From: Paul Kocialkowski Date: Tue, 4 Aug 2015 15:04:12 +0000 (+0200) Subject: usb: USB storage-specific part ifdef in uclass X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0fa5999bea643a81072f1e71a2fae976d00018a8;p=people%2Fms%2Fu-boot.git usb: USB storage-specific part ifdef in uclass usb_stor_reset is only defined when USB storage support is enabled, thus the function is not declared when such support is missing. Signed-off-by: Paul Kocialkowski --- diff --git a/drivers/usb/host/usb-uclass.c b/drivers/usb/host/usb-uclass.c index c5d1e7feb9..b17a7d762e 100644 --- a/drivers/usb/host/usb-uclass.c +++ b/drivers/usb/host/usb-uclass.c @@ -173,7 +173,9 @@ int usb_stop(void) uclass_foreach_dev(dev, uc) usb_emul_reset(dev); #endif +#ifdef CONFIG_USB_STORAGE usb_stor_reset(); +#endif usb_hub_reset(); uc_priv->companion_device_count = 0; usb_started = 0;