diff options
-rw-r--r-- | drivers/usb/core/hcd.h | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/drivers/usb/core/hcd.h b/drivers/usb/core/hcd.h index a5d92943ff95..24a62a2ff86d 100644 --- a/drivers/usb/core/hcd.h +++ b/drivers/usb/core/hcd.h | |||
@@ -351,9 +351,6 @@ extern long usb_calc_bus_time (int speed, int is_input, | |||
351 | 351 | ||
352 | extern struct usb_bus *usb_alloc_bus (struct usb_operations *); | 352 | extern struct usb_bus *usb_alloc_bus (struct usb_operations *); |
353 | 353 | ||
354 | extern void usb_hcd_suspend_root_hub (struct usb_hcd *hcd); | ||
355 | extern void usb_hcd_resume_root_hub (struct usb_hcd *hcd); | ||
356 | |||
357 | extern void usb_set_device_state(struct usb_device *udev, | 354 | extern void usb_set_device_state(struct usb_device *udev, |
358 | enum usb_device_state new_state); | 355 | enum usb_device_state new_state); |
359 | 356 | ||
@@ -376,9 +373,21 @@ extern int usb_find_interface_driver (struct usb_device *dev, | |||
376 | #define usb_endpoint_out(ep_dir) (!((ep_dir) & USB_DIR_IN)) | 373 | #define usb_endpoint_out(ep_dir) (!((ep_dir) & USB_DIR_IN)) |
377 | 374 | ||
378 | #ifdef CONFIG_PM | 375 | #ifdef CONFIG_PM |
376 | extern void usb_hcd_suspend_root_hub (struct usb_hcd *hcd); | ||
377 | extern void usb_hcd_resume_root_hub (struct usb_hcd *hcd); | ||
379 | extern int hcd_bus_suspend (struct usb_bus *bus); | 378 | extern int hcd_bus_suspend (struct usb_bus *bus); |
380 | extern int hcd_bus_resume (struct usb_bus *bus); | 379 | extern int hcd_bus_resume (struct usb_bus *bus); |
381 | #else | 380 | #else |
381 | static inline void usb_hcd_suspend_root_hub(struct usb_hcd *hcd) | ||
382 | { | ||
383 | return; | ||
384 | } | ||
385 | |||
386 | static inline void usb_hcd_resume_root_hub(struct usb_hcd *hcd) | ||
387 | { | ||
388 | return; | ||
389 | } | ||
390 | |||
382 | static inline int hcd_bus_suspend(struct usb_bus *bus) | 391 | static inline int hcd_bus_suspend(struct usb_bus *bus) |
383 | { | 392 | { |
384 | return 0; | 393 | return 0; |