diff options
author | David Brownell <david-b@pacbell.net> | 2006-11-01 14:26:26 -0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-11-03 11:57:18 -0800 |
commit | 11bd44abbd204f580ea91e75c84e012988971012 (patch) | |
tree | a382f3554170368fc3d9abe811313d7f7c19afeb /drivers/usb | |
parent | 23b0d968c2c82c2574ca97148ce092eff4ab84a6 (diff) | |
download | linux-3.10-11bd44abbd204f580ea91e75c84e012988971012.tar.gz linux-3.10-11bd44abbd204f580ea91e75c84e012988971012.tar.bz2 linux-3.10-11bd44abbd204f580ea91e75c84e012988971012.zip |
USB: fix compiler issues with newer gcc versions
Remove complaint from newer GCCs; they don't like forward function
declarations except in top-level contexts.
Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb')
-rw-r--r-- | drivers/usb/core/hub.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/usb/core/hub.c b/drivers/usb/core/hub.c index 66bff184a30..ba165aff9ea 100644 --- a/drivers/usb/core/hub.c +++ b/drivers/usb/core/hub.c @@ -1188,6 +1188,7 @@ static inline void show_string(struct usb_device *udev, char *id, char *string) #ifdef CONFIG_USB_OTG #include "otg_whitelist.h" +static int __usb_port_suspend(struct usb_device *, int port1); #endif /** @@ -1289,8 +1290,6 @@ int usb_new_device(struct usb_device *udev) * (Includes HNP test device.) */ if (udev->bus->b_hnp_enable || udev->bus->is_b_host) { - static int __usb_port_suspend(struct usb_device *, - int port1); err = __usb_port_suspend(udev, udev->bus->otg_port); if (err < 0) dev_dbg(&udev->dev, "HNP fail, %d\n", err); |