mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-20 05:31:15 +00:00
USB: Turn usb_resume_both() into static inline
drivers/usb/core/hub.c: In function `hub_events': drivers/usb/core/hub.c:2591: warning: statement with no effect Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
088dc270e1
commit
42d8a2d22b
1 changed files with 4 additions and 1 deletions
|
@ -40,7 +40,10 @@ extern int usb_port_resume(struct usb_device *dev);
|
||||||
#else
|
#else
|
||||||
|
|
||||||
#define usb_suspend_both(udev, msg) 0
|
#define usb_suspend_both(udev, msg) 0
|
||||||
#define usb_resume_both(udev) 0
|
static inline int usb_resume_both(struct usb_device *udev)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
#define usb_port_suspend(dev) 0
|
#define usb_port_suspend(dev) 0
|
||||||
#define usb_port_resume(dev) 0
|
#define usb_port_resume(dev) 0
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue