Commit ec5633ba677761b44ba94ae29c906ba79dd6eaa0

Authored by Luis Henriques
Committed by Greg Kroah-Hartman
1 parent cd6e245a2d

usb: storage: fix build warnings !CONFIG_PM

Functions fw5895_init() and config_autodelink_before_power_down() are used
only when CONFIG_PM is defined.

drivers/usb/storage/realtek_cr.c:699:13: warning: 'fw5895_init' defined but not used [-Wunused-function]
drivers/usb/storage/realtek_cr.c:629:12: warning: 'config_autodelink_before_power_down' defined but not used [-Wunused-function]

Signed-off-by: Luis Henriques <luis.henriques@canonical.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

Showing 1 changed file with 2 additions and 0 deletions Side-by-side Diff

drivers/usb/storage/realtek_cr.c
... ... @@ -626,6 +626,7 @@
626 626 return 0;
627 627 }
628 628  
  629 +#ifdef CONFIG_PM
629 630 static int config_autodelink_before_power_down(struct us_data *us)
630 631 {
631 632 struct rts51x_chip *chip = (struct rts51x_chip *)(us->extra);
... ... @@ -716,6 +717,7 @@
716 717 }
717 718 }
718 719 }
  720 +#endif
719 721  
720 722 #ifdef CONFIG_REALTEK_AUTOPM
721 723 static void fw5895_set_mmc_wp(struct us_data *us)