aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/core
diff options
context:
space:
mode:
authorRafael J. Wysocki <rafael.j.wysocki@intel.com>2014-11-29 17:47:05 -0500
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>2014-12-03 18:51:54 -0500
commitceb6c9c862c86423f41c1e20ecf8d454f837f519 (patch)
tree23b6b5cb563720c9562977f4835d004c1d12f7bd /drivers/usb/core
parent6ed23b806e73bdd5b17722df507b0f4570c606b6 (diff)
USB / PM: Drop CONFIG_PM_RUNTIME from the USB core
After commit b2b49ccbdd54 (PM: Kconfig: Set PM_RUNTIME if PM_SLEEP is selected) PM_RUNTIME is always set if PM is set, so quite a few depend on CONFIG_PM (or even dropped in some cases). Replace CONFIG_PM_RUNTIME with CONFIG_PM in the USB core code and documentation. Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com> Acked-by: Alan Stern <stern@rowland.harvard.edu> Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/core')
-rw-r--r--drivers/usb/core/driver.c6
-rw-r--r--drivers/usb/core/hcd-pci.c11
-rw-r--r--drivers/usb/core/hcd.c12
-rw-r--r--drivers/usb/core/hub.c6
-rw-r--r--drivers/usb/core/port.c4
-rw-r--r--drivers/usb/core/sysfs.c13
-rw-r--r--drivers/usb/core/usb.c4
-rw-r--r--drivers/usb/core/usb.h23
8 files changed, 24 insertions, 55 deletions
diff --git a/drivers/usb/core/driver.c b/drivers/usb/core/driver.c
index 9bffd26cea05..874dec31a111 100644
--- a/drivers/usb/core/driver.c
+++ b/drivers/usb/core/driver.c
@@ -1493,10 +1493,6 @@ int usb_resume(struct device *dev, pm_message_t msg)
1493 return status; 1493 return status;
1494} 1494}
1495 1495
1496#endif /* CONFIG_PM */
1497
1498#ifdef CONFIG_PM_RUNTIME
1499
1500/** 1496/**
1501 * usb_enable_autosuspend - allow a USB device to be autosuspended 1497 * usb_enable_autosuspend - allow a USB device to be autosuspended
1502 * @udev: the USB device which may be autosuspended 1498 * @udev: the USB device which may be autosuspended
@@ -1876,7 +1872,7 @@ int usb_set_usb2_hardware_lpm(struct usb_device *udev, int enable)
1876 return ret; 1872 return ret;
1877} 1873}
1878 1874
1879#endif /* CONFIG_PM_RUNTIME */ 1875#endif /* CONFIG_PM */
1880 1876
1881struct bus_type usb_bus_type = { 1877struct bus_type usb_bus_type = {
1882 .name = "usb", 1878 .name = "usb",
diff --git a/drivers/usb/core/hcd-pci.c b/drivers/usb/core/hcd-pci.c
index efc953119ce2..9eb1cff28bd4 100644
--- a/drivers/usb/core/hcd-pci.c
+++ b/drivers/usb/core/hcd-pci.c
@@ -429,7 +429,6 @@ static int check_root_hub_suspended(struct device *dev)
429 return 0; 429 return 0;
430} 430}
431 431
432#if defined(CONFIG_PM_SLEEP) || defined(CONFIG_PM_RUNTIME)
433static int suspend_common(struct device *dev, bool do_wakeup) 432static int suspend_common(struct device *dev, bool do_wakeup)
434{ 433{
435 struct pci_dev *pci_dev = to_pci_dev(dev); 434 struct pci_dev *pci_dev = to_pci_dev(dev);
@@ -528,7 +527,6 @@ static int resume_common(struct device *dev, int event)
528 } 527 }
529 return retval; 528 return retval;
530} 529}
531#endif /* SLEEP || RUNTIME */
532 530
533#ifdef CONFIG_PM_SLEEP 531#ifdef CONFIG_PM_SLEEP
534 532
@@ -607,8 +605,6 @@ static int hcd_pci_restore(struct device *dev)
607 605
608#endif /* CONFIG_PM_SLEEP */ 606#endif /* CONFIG_PM_SLEEP */
609 607
610#ifdef CONFIG_PM_RUNTIME
611
612static int hcd_pci_runtime_suspend(struct device *dev) 608static int hcd_pci_runtime_suspend(struct device *dev)
613{ 609{
614 int retval; 610 int retval;
@@ -630,13 +626,6 @@ static int hcd_pci_runtime_resume(struct device *dev)
630 return retval; 626 return retval;
631} 627}
632 628
633#else
634
635#define hcd_pci_runtime_suspend NULL
636#define hcd_pci_runtime_resume NULL
637
638#endif /* CONFIG_PM_RUNTIME */
639
640const struct dev_pm_ops usb_hcd_pci_pm_ops = { 629const struct dev_pm_ops usb_hcd_pci_pm_ops = {
641 .suspend = hcd_pci_suspend, 630 .suspend = hcd_pci_suspend,
642 .suspend_noirq = hcd_pci_suspend_noirq, 631 .suspend_noirq = hcd_pci_suspend_noirq,
diff --git a/drivers/usb/core/hcd.c b/drivers/usb/core/hcd.c
index a6efb4184f2b..278be0515e8e 100644
--- a/drivers/usb/core/hcd.c
+++ b/drivers/usb/core/hcd.c
@@ -2258,10 +2258,6 @@ int hcd_bus_resume(struct usb_device *rhdev, pm_message_t msg)
2258 return status; 2258 return status;
2259} 2259}
2260 2260
2261#endif /* CONFIG_PM */
2262
2263#ifdef CONFIG_PM_RUNTIME
2264
2265/* Workqueue routine for root-hub remote wakeup */ 2261/* Workqueue routine for root-hub remote wakeup */
2266static void hcd_resume_work(struct work_struct *work) 2262static void hcd_resume_work(struct work_struct *work)
2267{ 2263{
@@ -2293,7 +2289,7 @@ void usb_hcd_resume_root_hub (struct usb_hcd *hcd)
2293} 2289}
2294EXPORT_SYMBOL_GPL(usb_hcd_resume_root_hub); 2290EXPORT_SYMBOL_GPL(usb_hcd_resume_root_hub);
2295 2291
2296#endif /* CONFIG_PM_RUNTIME */ 2292#endif /* CONFIG_PM */
2297 2293
2298/*-------------------------------------------------------------------------*/ 2294/*-------------------------------------------------------------------------*/
2299 2295
@@ -2476,7 +2472,7 @@ struct usb_hcd *usb_create_shared_hcd(const struct hc_driver *driver,
2476 init_timer(&hcd->rh_timer); 2472 init_timer(&hcd->rh_timer);
2477 hcd->rh_timer.function = rh_timer_func; 2473 hcd->rh_timer.function = rh_timer_func;
2478 hcd->rh_timer.data = (unsigned long) hcd; 2474 hcd->rh_timer.data = (unsigned long) hcd;
2479#ifdef CONFIG_PM_RUNTIME 2475#ifdef CONFIG_PM
2480 INIT_WORK(&hcd->wakeup_work, hcd_resume_work); 2476 INIT_WORK(&hcd->wakeup_work, hcd_resume_work);
2481#endif 2477#endif
2482 2478
@@ -2790,7 +2786,7 @@ error_create_attr_group:
2790 hcd->rh_registered = 0; 2786 hcd->rh_registered = 0;
2791 spin_unlock_irq(&hcd_root_hub_lock); 2787 spin_unlock_irq(&hcd_root_hub_lock);
2792 2788
2793#ifdef CONFIG_PM_RUNTIME 2789#ifdef CONFIG_PM
2794 cancel_work_sync(&hcd->wakeup_work); 2790 cancel_work_sync(&hcd->wakeup_work);
2795#endif 2791#endif
2796 mutex_lock(&usb_bus_list_lock); 2792 mutex_lock(&usb_bus_list_lock);
@@ -2858,7 +2854,7 @@ void usb_remove_hcd(struct usb_hcd *hcd)
2858 hcd->rh_registered = 0; 2854 hcd->rh_registered = 0;
2859 spin_unlock_irq (&hcd_root_hub_lock); 2855 spin_unlock_irq (&hcd_root_hub_lock);
2860 2856
2861#ifdef CONFIG_PM_RUNTIME 2857#ifdef CONFIG_PM
2862 cancel_work_sync(&hcd->wakeup_work); 2858 cancel_work_sync(&hcd->wakeup_work);
2863#endif 2859#endif
2864 2860
diff --git a/drivers/usb/core/hub.c b/drivers/usb/core/hub.c
index b649fef2e35d..c9596525ba8c 100644
--- a/drivers/usb/core/hub.c
+++ b/drivers/usb/core/hub.c
@@ -1737,7 +1737,7 @@ static int hub_probe(struct usb_interface *intf, const struct usb_device_id *id)
1737 * - If user has indicated to prevent autosuspend by passing 1737 * - If user has indicated to prevent autosuspend by passing
1738 * usbcore.autosuspend = -1 then keep autosuspend disabled. 1738 * usbcore.autosuspend = -1 then keep autosuspend disabled.
1739 */ 1739 */
1740#ifdef CONFIG_PM_RUNTIME 1740#ifdef CONFIG_PM
1741 if (hdev->dev.power.autosuspend_delay >= 0) 1741 if (hdev->dev.power.autosuspend_delay >= 0)
1742 pm_runtime_set_autosuspend_delay(&hdev->dev, 0); 1742 pm_runtime_set_autosuspend_delay(&hdev->dev, 0);
1743#endif 1743#endif
@@ -3449,7 +3449,7 @@ int usb_port_resume(struct usb_device *udev, pm_message_t msg)
3449 return status; 3449 return status;
3450} 3450}
3451 3451
3452#ifdef CONFIG_PM_RUNTIME 3452#ifdef CONFIG_PM
3453 3453
3454int usb_remote_wakeup(struct usb_device *udev) 3454int usb_remote_wakeup(struct usb_device *udev)
3455{ 3455{
@@ -4856,7 +4856,7 @@ static void hub_port_connect_change(struct usb_hub *hub, int port1,
4856 udev->state != USB_STATE_NOTATTACHED) { 4856 udev->state != USB_STATE_NOTATTACHED) {
4857 if (portstatus & USB_PORT_STAT_ENABLE) { 4857 if (portstatus & USB_PORT_STAT_ENABLE) {
4858 status = 0; /* Nothing to do */ 4858 status = 0; /* Nothing to do */
4859#ifdef CONFIG_PM_RUNTIME 4859#ifdef CONFIG_PM
4860 } else if (udev->state == USB_STATE_SUSPENDED && 4860 } else if (udev->state == USB_STATE_SUSPENDED &&
4861 udev->persist_enabled) { 4861 udev->persist_enabled) {
4862 /* For a suspended device, treat this as a 4862 /* For a suspended device, treat this as a
diff --git a/drivers/usb/core/port.c b/drivers/usb/core/port.c
index cd3f9dc24a06..210618319f10 100644
--- a/drivers/usb/core/port.c
+++ b/drivers/usb/core/port.c
@@ -72,7 +72,7 @@ static void usb_port_device_release(struct device *dev)
72 kfree(port_dev); 72 kfree(port_dev);
73} 73}
74 74
75#ifdef CONFIG_PM_RUNTIME 75#ifdef CONFIG_PM
76static int usb_port_runtime_resume(struct device *dev) 76static int usb_port_runtime_resume(struct device *dev)
77{ 77{
78 struct usb_port *port_dev = to_usb_port(dev); 78 struct usb_port *port_dev = to_usb_port(dev);
@@ -171,7 +171,7 @@ static int usb_port_runtime_suspend(struct device *dev)
171#endif 171#endif
172 172
173static const struct dev_pm_ops usb_port_pm_ops = { 173static const struct dev_pm_ops usb_port_pm_ops = {
174#ifdef CONFIG_PM_RUNTIME 174#ifdef CONFIG_PM
175 .runtime_suspend = usb_port_runtime_suspend, 175 .runtime_suspend = usb_port_runtime_suspend,
176 .runtime_resume = usb_port_runtime_resume, 176 .runtime_resume = usb_port_runtime_resume,
177#endif 177#endif
diff --git a/drivers/usb/core/sysfs.c b/drivers/usb/core/sysfs.c
index 1236c6011c70..d26973844a4d 100644
--- a/drivers/usb/core/sysfs.c
+++ b/drivers/usb/core/sysfs.c
@@ -334,14 +334,6 @@ static void remove_persist_attributes(struct device *dev)
334 &dev_attr_persist.attr, 334 &dev_attr_persist.attr,
335 power_group_name); 335 power_group_name);
336} 336}
337#else
338
339#define add_persist_attributes(dev) 0
340#define remove_persist_attributes(dev) do {} while (0)
341
342#endif /* CONFIG_PM */
343
344#ifdef CONFIG_PM_RUNTIME
345 337
346static ssize_t connected_duration_show(struct device *dev, 338static ssize_t connected_duration_show(struct device *dev,
347 struct device_attribute *attr, char *buf) 339 struct device_attribute *attr, char *buf)
@@ -585,10 +577,13 @@ static void remove_power_attributes(struct device *dev)
585 577
586#else 578#else
587 579
580#define add_persist_attributes(dev) 0
581#define remove_persist_attributes(dev) do {} while (0)
582
588#define add_power_attributes(dev) 0 583#define add_power_attributes(dev) 0
589#define remove_power_attributes(dev) do {} while (0) 584#define remove_power_attributes(dev) do {} while (0)
590 585
591#endif /* CONFIG_PM_RUNTIME */ 586#endif /* CONFIG_PM */
592 587
593 588
594/* Descriptor fields */ 589/* Descriptor fields */
diff --git a/drivers/usb/core/usb.c b/drivers/usb/core/usb.c
index 2dd2362198d2..2a92b97f0144 100644
--- a/drivers/usb/core/usb.c
+++ b/drivers/usb/core/usb.c
@@ -49,7 +49,7 @@ const char *usbcore_name = "usbcore";
49 49
50static bool nousb; /* Disable USB when built into kernel image */ 50static bool nousb; /* Disable USB when built into kernel image */
51 51
52#ifdef CONFIG_PM_RUNTIME 52#ifdef CONFIG_PM
53static int usb_autosuspend_delay = 2; /* Default delay value, 53static int usb_autosuspend_delay = 2; /* Default delay value,
54 * in seconds */ 54 * in seconds */
55module_param_named(autosuspend, usb_autosuspend_delay, int, 0644); 55module_param_named(autosuspend, usb_autosuspend_delay, int, 0644);
@@ -348,11 +348,9 @@ static const struct dev_pm_ops usb_device_pm_ops = {
348 .thaw = usb_dev_thaw, 348 .thaw = usb_dev_thaw,
349 .poweroff = usb_dev_poweroff, 349 .poweroff = usb_dev_poweroff,
350 .restore = usb_dev_restore, 350 .restore = usb_dev_restore,
351#ifdef CONFIG_PM_RUNTIME
352 .runtime_suspend = usb_runtime_suspend, 351 .runtime_suspend = usb_runtime_suspend,
353 .runtime_resume = usb_runtime_resume, 352 .runtime_resume = usb_runtime_resume,
354 .runtime_idle = usb_runtime_idle, 353 .runtime_idle = usb_runtime_idle,
355#endif
356}; 354};
357 355
358#endif /* CONFIG_PM */ 356#endif /* CONFIG_PM */
diff --git a/drivers/usb/core/usb.h b/drivers/usb/core/usb.h
index b1b34d0557c9..7eb1e26798e5 100644
--- a/drivers/usb/core/usb.h
+++ b/drivers/usb/core/usb.h
@@ -75,6 +75,14 @@ extern int usb_resume_complete(struct device *dev);
75extern int usb_port_suspend(struct usb_device *dev, pm_message_t msg); 75extern int usb_port_suspend(struct usb_device *dev, pm_message_t msg);
76extern int usb_port_resume(struct usb_device *dev, pm_message_t msg); 76extern int usb_port_resume(struct usb_device *dev, pm_message_t msg);
77 77
78extern void usb_autosuspend_device(struct usb_device *udev);
79extern int usb_autoresume_device(struct usb_device *udev);
80extern int usb_remote_wakeup(struct usb_device *dev);
81extern int usb_runtime_suspend(struct device *dev);
82extern int usb_runtime_resume(struct device *dev);
83extern int usb_runtime_idle(struct device *dev);
84extern int usb_set_usb2_hardware_lpm(struct usb_device *udev, int enable);
85
78#else 86#else
79 87
80static inline int usb_port_suspend(struct usb_device *udev, pm_message_t msg) 88static inline int usb_port_suspend(struct usb_device *udev, pm_message_t msg)
@@ -87,20 +95,6 @@ static inline int usb_port_resume(struct usb_device *udev, pm_message_t msg)
87 return 0; 95 return 0;
88} 96}
89 97
90#endif
91
92#ifdef CONFIG_PM_RUNTIME
93
94extern void usb_autosuspend_device(struct usb_device *udev);
95extern int usb_autoresume_device(struct usb_device *udev);
96extern int usb_remote_wakeup(struct usb_device *dev);
97extern int usb_runtime_suspend(struct device *dev);
98extern int usb_runtime_resume(struct device *dev);
99extern int usb_runtime_idle(struct device *dev);
100extern int usb_set_usb2_hardware_lpm(struct usb_device *udev, int enable);
101
102#else
103
104#define usb_autosuspend_device(udev) do {} while (0) 98#define usb_autosuspend_device(udev) do {} while (0)
105static inline int usb_autoresume_device(struct usb_device *udev) 99static inline int usb_autoresume_device(struct usb_device *udev)
106{ 100{
@@ -111,6 +105,7 @@ static inline int usb_set_usb2_hardware_lpm(struct usb_device *udev, int enable)
111{ 105{
112 return 0; 106 return 0;
113} 107}
108
114#endif 109#endif
115 110
116extern struct bus_type usb_bus_type; 111extern struct bus_type usb_bus_type;