diff options
author | Alan Stern <stern@rowland.harvard.edu> | 2005-10-13 17:08:02 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2005-10-28 19:47:44 -0400 |
commit | 0c0382e32d46f606951010b202382be14d180a17 (patch) | |
tree | 078327baa96637ca6d70bae3c59a16b0ff46f1f1 | |
parent | bb200f6eac6372839921be1fe87c1f5c292a7bd6 (diff) |
[PATCH] USB: Rename hcd->hub_suspend to hcd->bus_suspend
This patch (as580) is perhaps the only result from the long discussion I
had with David about his changes to the root-hub suspend/resume code. It
renames the hub_suspend and hub_resume methods in struct usb_hcd to
bus_suspend and bus_resume. These are more descriptive names, since the
methods really do suspend or resume an entire USB bus, and less likely to
be confused with the hub_suspend and hub_resume routines in hub.c.
It also takes David's advice about removing the layer of bus glue, where
those methods are called. And it implements a related change that David
made to the other HCDs but forgot to put into dummy_hcd.
Signed-off-by: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r-- | drivers/usb/core/hcd.c | 16 | ||||
-rw-r--r-- | drivers/usb/core/hcd.h | 23 | ||||
-rw-r--r-- | drivers/usb/core/hub.c | 8 | ||||
-rw-r--r-- | drivers/usb/gadget/dummy_hcd.c | 22 | ||||
-rw-r--r-- | drivers/usb/host/ehci-hub.c | 8 | ||||
-rw-r--r-- | drivers/usb/host/ehci-pci.c | 4 | ||||
-rw-r--r-- | drivers/usb/host/isp116x-hcd.c | 12 | ||||
-rw-r--r-- | drivers/usb/host/ohci-au1xxx.c | 4 | ||||
-rw-r--r-- | drivers/usb/host/ohci-hub.c | 6 | ||||
-rw-r--r-- | drivers/usb/host/ohci-lh7a404.c | 4 | ||||
-rw-r--r-- | drivers/usb/host/ohci-omap.c | 4 | ||||
-rw-r--r-- | drivers/usb/host/ohci-pci.c | 4 | ||||
-rw-r--r-- | drivers/usb/host/ohci-ppc-soc.c | 4 | ||||
-rw-r--r-- | drivers/usb/host/ohci-pxa27x.c | 4 | ||||
-rw-r--r-- | drivers/usb/host/ohci-s3c2410.c | 4 | ||||
-rw-r--r-- | drivers/usb/host/ohci-sa1111.c | 4 | ||||
-rw-r--r-- | drivers/usb/host/sl811-hcd.c | 16 | ||||
-rw-r--r-- | drivers/usb/host/uhci-hcd.c | 4 |
18 files changed, 72 insertions, 79 deletions
diff --git a/drivers/usb/core/hcd.c b/drivers/usb/core/hcd.c index b7bb8dd1894a..9ad3912a5ed7 100644 --- a/drivers/usb/core/hcd.c +++ b/drivers/usb/core/hcd.c | |||
@@ -1433,16 +1433,16 @@ rescan: | |||
1433 | 1433 | ||
1434 | #ifdef CONFIG_PM | 1434 | #ifdef CONFIG_PM |
1435 | 1435 | ||
1436 | static int hcd_hub_suspend (struct usb_bus *bus) | 1436 | int hcd_bus_suspend (struct usb_bus *bus) |
1437 | { | 1437 | { |
1438 | struct usb_hcd *hcd; | 1438 | struct usb_hcd *hcd; |
1439 | int status; | 1439 | int status; |
1440 | 1440 | ||
1441 | hcd = container_of (bus, struct usb_hcd, self); | 1441 | hcd = container_of (bus, struct usb_hcd, self); |
1442 | if (!hcd->driver->hub_suspend) | 1442 | if (!hcd->driver->bus_suspend) |
1443 | return -ENOENT; | 1443 | return -ENOENT; |
1444 | hcd->state = HC_STATE_QUIESCING; | 1444 | hcd->state = HC_STATE_QUIESCING; |
1445 | status = hcd->driver->hub_suspend (hcd); | 1445 | status = hcd->driver->bus_suspend (hcd); |
1446 | if (status == 0) | 1446 | if (status == 0) |
1447 | hcd->state = HC_STATE_SUSPENDED; | 1447 | hcd->state = HC_STATE_SUSPENDED; |
1448 | else | 1448 | else |
@@ -1451,18 +1451,18 @@ static int hcd_hub_suspend (struct usb_bus *bus) | |||
1451 | return status; | 1451 | return status; |
1452 | } | 1452 | } |
1453 | 1453 | ||
1454 | static int hcd_hub_resume (struct usb_bus *bus) | 1454 | int hcd_bus_resume (struct usb_bus *bus) |
1455 | { | 1455 | { |
1456 | struct usb_hcd *hcd; | 1456 | struct usb_hcd *hcd; |
1457 | int status; | 1457 | int status; |
1458 | 1458 | ||
1459 | hcd = container_of (bus, struct usb_hcd, self); | 1459 | hcd = container_of (bus, struct usb_hcd, self); |
1460 | if (!hcd->driver->hub_resume) | 1460 | if (!hcd->driver->bus_resume) |
1461 | return -ENOENT; | 1461 | return -ENOENT; |
1462 | if (hcd->state == HC_STATE_RUNNING) | 1462 | if (hcd->state == HC_STATE_RUNNING) |
1463 | return 0; | 1463 | return 0; |
1464 | hcd->state = HC_STATE_RESUMING; | 1464 | hcd->state = HC_STATE_RESUMING; |
1465 | status = hcd->driver->hub_resume (hcd); | 1465 | status = hcd->driver->bus_resume (hcd); |
1466 | if (status == 0) | 1466 | if (status == 0) |
1467 | hcd->state = HC_STATE_RUNNING; | 1467 | hcd->state = HC_STATE_RUNNING; |
1468 | else { | 1468 | else { |
@@ -1590,10 +1590,6 @@ static struct usb_operations usb_hcd_operations = { | |||
1590 | .buffer_alloc = hcd_buffer_alloc, | 1590 | .buffer_alloc = hcd_buffer_alloc, |
1591 | .buffer_free = hcd_buffer_free, | 1591 | .buffer_free = hcd_buffer_free, |
1592 | .disable = hcd_endpoint_disable, | 1592 | .disable = hcd_endpoint_disable, |
1593 | #ifdef CONFIG_PM | ||
1594 | .hub_suspend = hcd_hub_suspend, | ||
1595 | .hub_resume = hcd_hub_resume, | ||
1596 | #endif | ||
1597 | }; | 1593 | }; |
1598 | 1594 | ||
1599 | /*-------------------------------------------------------------------------*/ | 1595 | /*-------------------------------------------------------------------------*/ |
diff --git a/drivers/usb/core/hcd.h b/drivers/usb/core/hcd.h index 74757fc1a99f..d8f0d29a45b7 100644 --- a/drivers/usb/core/hcd.h +++ b/drivers/usb/core/hcd.h | |||
@@ -154,10 +154,6 @@ struct usb_operations { | |||
154 | 154 | ||
155 | void (*disable)(struct usb_device *udev, | 155 | void (*disable)(struct usb_device *udev, |
156 | struct usb_host_endpoint *ep); | 156 | struct usb_host_endpoint *ep); |
157 | |||
158 | /* global suspend/resume of bus */ | ||
159 | int (*hub_suspend)(struct usb_bus *); | ||
160 | int (*hub_resume)(struct usb_bus *); | ||
161 | }; | 157 | }; |
162 | 158 | ||
163 | /* each driver provides one of these, and hardware init support */ | 159 | /* each driver provides one of these, and hardware init support */ |
@@ -212,8 +208,8 @@ struct hc_driver { | |||
212 | int (*hub_control) (struct usb_hcd *hcd, | 208 | int (*hub_control) (struct usb_hcd *hcd, |
213 | u16 typeReq, u16 wValue, u16 wIndex, | 209 | u16 typeReq, u16 wValue, u16 wIndex, |
214 | char *buf, u16 wLength); | 210 | char *buf, u16 wLength); |
215 | int (*hub_suspend)(struct usb_hcd *); | 211 | int (*bus_suspend)(struct usb_hcd *); |
216 | int (*hub_resume)(struct usb_hcd *); | 212 | int (*bus_resume)(struct usb_hcd *); |
217 | int (*start_port_reset)(struct usb_hcd *, unsigned port_num); | 213 | int (*start_port_reset)(struct usb_hcd *, unsigned port_num); |
218 | void (*hub_irq_enable)(struct usb_hcd *); | 214 | void (*hub_irq_enable)(struct usb_hcd *); |
219 | /* Needed only if port-change IRQs are level-triggered */ | 215 | /* Needed only if port-change IRQs are level-triggered */ |
@@ -379,6 +375,21 @@ extern int usb_find_interface_driver (struct usb_device *dev, | |||
379 | 375 | ||
380 | #define usb_endpoint_out(ep_dir) (!((ep_dir) & USB_DIR_IN)) | 376 | #define usb_endpoint_out(ep_dir) (!((ep_dir) & USB_DIR_IN)) |
381 | 377 | ||
378 | #ifdef CONFIG_PM | ||
379 | extern int hcd_bus_suspend (struct usb_bus *bus); | ||
380 | extern int hcd_bus_resume (struct usb_bus *bus); | ||
381 | #else | ||
382 | static inline int hcd_bus_suspend(struct usb_bus *bus) | ||
383 | { | ||
384 | return 0; | ||
385 | } | ||
386 | |||
387 | static inline int hcd_bus_resume (struct usb_bus *bus) | ||
388 | { | ||
389 | return 0; | ||
390 | } | ||
391 | #endif /* CONFIG_PM */ | ||
392 | |||
382 | /* | 393 | /* |
383 | * USB device fs stuff | 394 | * USB device fs stuff |
384 | */ | 395 | */ |
diff --git a/drivers/usb/core/hub.c b/drivers/usb/core/hub.c index e2802bf18095..273e6ccca213 100644 --- a/drivers/usb/core/hub.c +++ b/drivers/usb/core/hub.c | |||
@@ -1917,8 +1917,8 @@ static int hub_suspend(struct usb_interface *intf, pm_message_t msg) | |||
1917 | /* "global suspend" of the downstream HC-to-USB interface */ | 1917 | /* "global suspend" of the downstream HC-to-USB interface */ |
1918 | if (!hdev->parent) { | 1918 | if (!hdev->parent) { |
1919 | struct usb_bus *bus = hdev->bus; | 1919 | struct usb_bus *bus = hdev->bus; |
1920 | if (bus && bus->op->hub_suspend) { | 1920 | if (bus) { |
1921 | int status = bus->op->hub_suspend (bus); | 1921 | int status = hcd_bus_suspend (bus); |
1922 | 1922 | ||
1923 | if (status != 0) { | 1923 | if (status != 0) { |
1924 | dev_dbg(&hdev->dev, "'global' suspend %d\n", | 1924 | dev_dbg(&hdev->dev, "'global' suspend %d\n", |
@@ -1943,8 +1943,8 @@ static int hub_resume(struct usb_interface *intf) | |||
1943 | /* "global resume" of the downstream HC-to-USB interface */ | 1943 | /* "global resume" of the downstream HC-to-USB interface */ |
1944 | if (!hdev->parent) { | 1944 | if (!hdev->parent) { |
1945 | struct usb_bus *bus = hdev->bus; | 1945 | struct usb_bus *bus = hdev->bus; |
1946 | if (bus && bus->op->hub_resume) { | 1946 | if (bus) { |
1947 | status = bus->op->hub_resume (bus); | 1947 | status = hcd_bus_resume (bus); |
1948 | if (status) { | 1948 | if (status) { |
1949 | dev_dbg(&intf->dev, "'global' resume %d\n", | 1949 | dev_dbg(&intf->dev, "'global' resume %d\n", |
1950 | status); | 1950 | status); |
diff --git a/drivers/usb/gadget/dummy_hcd.c b/drivers/usb/gadget/dummy_hcd.c index 503201764f6b..c605aaeed636 100644 --- a/drivers/usb/gadget/dummy_hcd.c +++ b/drivers/usb/gadget/dummy_hcd.c | |||
@@ -1751,7 +1751,7 @@ static int dummy_hub_control ( | |||
1751 | return retval; | 1751 | return retval; |
1752 | } | 1752 | } |
1753 | 1753 | ||
1754 | static int dummy_hub_suspend (struct usb_hcd *hcd) | 1754 | static int dummy_bus_suspend (struct usb_hcd *hcd) |
1755 | { | 1755 | { |
1756 | struct dummy *dum = hcd_to_dummy (hcd); | 1756 | struct dummy *dum = hcd_to_dummy (hcd); |
1757 | 1757 | ||
@@ -1762,7 +1762,7 @@ static int dummy_hub_suspend (struct usb_hcd *hcd) | |||
1762 | return 0; | 1762 | return 0; |
1763 | } | 1763 | } |
1764 | 1764 | ||
1765 | static int dummy_hub_resume (struct usb_hcd *hcd) | 1765 | static int dummy_bus_resume (struct usb_hcd *hcd) |
1766 | { | 1766 | { |
1767 | struct dummy *dum = hcd_to_dummy (hcd); | 1767 | struct dummy *dum = hcd_to_dummy (hcd); |
1768 | 1768 | ||
@@ -1894,8 +1894,8 @@ static const struct hc_driver dummy_hcd = { | |||
1894 | 1894 | ||
1895 | .hub_status_data = dummy_hub_status, | 1895 | .hub_status_data = dummy_hub_status, |
1896 | .hub_control = dummy_hub_control, | 1896 | .hub_control = dummy_hub_control, |
1897 | .hub_suspend = dummy_hub_suspend, | 1897 | .bus_suspend = dummy_bus_suspend, |
1898 | .hub_resume = dummy_hub_resume, | 1898 | .bus_resume = dummy_bus_resume, |
1899 | }; | 1899 | }; |
1900 | 1900 | ||
1901 | static int dummy_hcd_probe (struct device *dev) | 1901 | static int dummy_hcd_probe (struct device *dev) |
@@ -1936,13 +1936,6 @@ static int dummy_hcd_suspend (struct device *dev, pm_message_t state) | |||
1936 | dev_dbg (dev, "%s\n", __FUNCTION__); | 1936 | dev_dbg (dev, "%s\n", __FUNCTION__); |
1937 | hcd = dev_get_drvdata (dev); | 1937 | hcd = dev_get_drvdata (dev); |
1938 | 1938 | ||
1939 | #ifndef CONFIG_USB_SUSPEND | ||
1940 | /* Otherwise this would never happen */ | ||
1941 | usb_lock_device (hcd->self.root_hub); | ||
1942 | dummy_hub_suspend (hcd); | ||
1943 | usb_unlock_device (hcd->self.root_hub); | ||
1944 | #endif | ||
1945 | |||
1946 | hcd->state = HC_STATE_SUSPENDED; | 1939 | hcd->state = HC_STATE_SUSPENDED; |
1947 | return 0; | 1940 | return 0; |
1948 | } | 1941 | } |
@@ -1955,13 +1948,6 @@ static int dummy_hcd_resume (struct device *dev) | |||
1955 | hcd = dev_get_drvdata (dev); | 1948 | hcd = dev_get_drvdata (dev); |
1956 | hcd->state = HC_STATE_RUNNING; | 1949 | hcd->state = HC_STATE_RUNNING; |
1957 | 1950 | ||
1958 | #ifndef CONFIG_USB_SUSPEND | ||
1959 | /* Otherwise this would never happen */ | ||
1960 | usb_lock_device (hcd->self.root_hub); | ||
1961 | dummy_hub_resume (hcd); | ||
1962 | usb_unlock_device (hcd->self.root_hub); | ||
1963 | #endif | ||
1964 | |||
1965 | usb_hcd_poll_rh_status (hcd); | 1951 | usb_hcd_poll_rh_status (hcd); |
1966 | return 0; | 1952 | return 0; |
1967 | } | 1953 | } |
diff --git a/drivers/usb/host/ehci-hub.c b/drivers/usb/host/ehci-hub.c index 18d3f2270316..88cb4ada686e 100644 --- a/drivers/usb/host/ehci-hub.c +++ b/drivers/usb/host/ehci-hub.c | |||
@@ -30,7 +30,7 @@ | |||
30 | 30 | ||
31 | #ifdef CONFIG_PM | 31 | #ifdef CONFIG_PM |
32 | 32 | ||
33 | static int ehci_hub_suspend (struct usb_hcd *hcd) | 33 | static int ehci_bus_suspend (struct usb_hcd *hcd) |
34 | { | 34 | { |
35 | struct ehci_hcd *ehci = hcd_to_ehci (hcd); | 35 | struct ehci_hcd *ehci = hcd_to_ehci (hcd); |
36 | int port; | 36 | int port; |
@@ -83,7 +83,7 @@ static int ehci_hub_suspend (struct usb_hcd *hcd) | |||
83 | 83 | ||
84 | 84 | ||
85 | /* caller has locked the root hub, and should reset/reinit on error */ | 85 | /* caller has locked the root hub, and should reset/reinit on error */ |
86 | static int ehci_hub_resume (struct usb_hcd *hcd) | 86 | static int ehci_bus_resume (struct usb_hcd *hcd) |
87 | { | 87 | { |
88 | struct ehci_hcd *ehci = hcd_to_ehci (hcd); | 88 | struct ehci_hcd *ehci = hcd_to_ehci (hcd); |
89 | u32 temp; | 89 | u32 temp; |
@@ -159,8 +159,8 @@ static int ehci_hub_resume (struct usb_hcd *hcd) | |||
159 | 159 | ||
160 | #else | 160 | #else |
161 | 161 | ||
162 | #define ehci_hub_suspend NULL | 162 | #define ehci_bus_suspend NULL |
163 | #define ehci_hub_resume NULL | 163 | #define ehci_bus_resume NULL |
164 | 164 | ||
165 | #endif /* CONFIG_PM */ | 165 | #endif /* CONFIG_PM */ |
166 | 166 | ||
diff --git a/drivers/usb/host/ehci-pci.c b/drivers/usb/host/ehci-pci.c index 66ebf75b2037..8bbc8dfe19f3 100644 --- a/drivers/usb/host/ehci-pci.c +++ b/drivers/usb/host/ehci-pci.c | |||
@@ -363,8 +363,8 @@ static const struct hc_driver ehci_pci_hc_driver = { | |||
363 | */ | 363 | */ |
364 | .hub_status_data = ehci_hub_status_data, | 364 | .hub_status_data = ehci_hub_status_data, |
365 | .hub_control = ehci_hub_control, | 365 | .hub_control = ehci_hub_control, |
366 | .hub_suspend = ehci_hub_suspend, | 366 | .bus_suspend = ehci_bus_suspend, |
367 | .hub_resume = ehci_hub_resume, | 367 | .bus_resume = ehci_bus_resume, |
368 | }; | 368 | }; |
369 | 369 | ||
370 | /*-------------------------------------------------------------------------*/ | 370 | /*-------------------------------------------------------------------------*/ |
diff --git a/drivers/usb/host/isp116x-hcd.c b/drivers/usb/host/isp116x-hcd.c index f68220fc53fd..ddb8fc591466 100644 --- a/drivers/usb/host/isp116x-hcd.c +++ b/drivers/usb/host/isp116x-hcd.c | |||
@@ -1160,7 +1160,7 @@ static int isp116x_hub_control(struct usb_hcd *hcd, | |||
1160 | 1160 | ||
1161 | #ifdef CONFIG_PM | 1161 | #ifdef CONFIG_PM |
1162 | 1162 | ||
1163 | static int isp116x_hub_suspend(struct usb_hcd *hcd) | 1163 | static int isp116x_bus_suspend(struct usb_hcd *hcd) |
1164 | { | 1164 | { |
1165 | struct isp116x *isp116x = hcd_to_isp116x(hcd); | 1165 | struct isp116x *isp116x = hcd_to_isp116x(hcd); |
1166 | unsigned long flags; | 1166 | unsigned long flags; |
@@ -1200,7 +1200,7 @@ static int isp116x_hub_suspend(struct usb_hcd *hcd) | |||
1200 | return ret; | 1200 | return ret; |
1201 | } | 1201 | } |
1202 | 1202 | ||
1203 | static int isp116x_hub_resume(struct usb_hcd *hcd) | 1203 | static int isp116x_bus_resume(struct usb_hcd *hcd) |
1204 | { | 1204 | { |
1205 | struct isp116x *isp116x = hcd_to_isp116x(hcd); | 1205 | struct isp116x *isp116x = hcd_to_isp116x(hcd); |
1206 | u32 val; | 1206 | u32 val; |
@@ -1266,8 +1266,8 @@ static int isp116x_hub_resume(struct usb_hcd *hcd) | |||
1266 | 1266 | ||
1267 | #else | 1267 | #else |
1268 | 1268 | ||
1269 | #define isp116x_hub_suspend NULL | 1269 | #define isp116x_bus_suspend NULL |
1270 | #define isp116x_hub_resume NULL | 1270 | #define isp116x_bus_resume NULL |
1271 | 1271 | ||
1272 | #endif | 1272 | #endif |
1273 | 1273 | ||
@@ -1626,8 +1626,8 @@ static struct hc_driver isp116x_hc_driver = { | |||
1626 | 1626 | ||
1627 | .hub_status_data = isp116x_hub_status_data, | 1627 | .hub_status_data = isp116x_hub_status_data, |
1628 | .hub_control = isp116x_hub_control, | 1628 | .hub_control = isp116x_hub_control, |
1629 | .hub_suspend = isp116x_hub_suspend, | 1629 | .bus_suspend = isp116x_bus_suspend, |
1630 | .hub_resume = isp116x_hub_resume, | 1630 | .bus_resume = isp116x_bus_resume, |
1631 | }; | 1631 | }; |
1632 | 1632 | ||
1633 | /*----------------------------------------------------------------*/ | 1633 | /*----------------------------------------------------------------*/ |
diff --git a/drivers/usb/host/ohci-au1xxx.c b/drivers/usb/host/ohci-au1xxx.c index 550d67a554f6..ac463c493035 100644 --- a/drivers/usb/host/ohci-au1xxx.c +++ b/drivers/usb/host/ohci-au1xxx.c | |||
@@ -215,8 +215,8 @@ static const struct hc_driver ohci_au1xxx_hc_driver = { | |||
215 | .hub_status_data = ohci_hub_status_data, | 215 | .hub_status_data = ohci_hub_status_data, |
216 | .hub_control = ohci_hub_control, | 216 | .hub_control = ohci_hub_control, |
217 | #ifdef CONFIG_PM | 217 | #ifdef CONFIG_PM |
218 | .hub_suspend = ohci_hub_suspend, | 218 | .bus_suspend = ohci_bus_suspend, |
219 | .hub_resume = ohci_hub_resume, | 219 | .bus_resume = ohci_bus_resume, |
220 | #endif | 220 | #endif |
221 | .start_port_reset = ohci_start_port_reset, | 221 | .start_port_reset = ohci_start_port_reset, |
222 | }; | 222 | }; |
diff --git a/drivers/usb/host/ohci-hub.c b/drivers/usb/host/ohci-hub.c index 39a60e731ec2..e01e77bc324b 100644 --- a/drivers/usb/host/ohci-hub.c +++ b/drivers/usb/host/ohci-hub.c | |||
@@ -45,7 +45,7 @@ static void dl_done_list (struct ohci_hcd *, struct pt_regs *); | |||
45 | static void finish_unlinks (struct ohci_hcd *, u16 , struct pt_regs *); | 45 | static void finish_unlinks (struct ohci_hcd *, u16 , struct pt_regs *); |
46 | static int ohci_restart (struct ohci_hcd *ohci); | 46 | static int ohci_restart (struct ohci_hcd *ohci); |
47 | 47 | ||
48 | static int ohci_hub_suspend (struct usb_hcd *hcd) | 48 | static int ohci_bus_suspend (struct usb_hcd *hcd) |
49 | { | 49 | { |
50 | struct ohci_hcd *ohci = hcd_to_ohci (hcd); | 50 | struct ohci_hcd *ohci = hcd_to_ohci (hcd); |
51 | int status = 0; | 51 | int status = 0; |
@@ -135,7 +135,7 @@ static inline struct ed *find_head (struct ed *ed) | |||
135 | } | 135 | } |
136 | 136 | ||
137 | /* caller has locked the root hub */ | 137 | /* caller has locked the root hub */ |
138 | static int ohci_hub_resume (struct usb_hcd *hcd) | 138 | static int ohci_bus_resume (struct usb_hcd *hcd) |
139 | { | 139 | { |
140 | struct ohci_hcd *ohci = hcd_to_ohci (hcd); | 140 | struct ohci_hcd *ohci = hcd_to_ohci (hcd); |
141 | u32 temp, enables; | 141 | u32 temp, enables; |
@@ -362,7 +362,7 @@ done: | |||
362 | && usb_trylock_device (hcd->self.root_hub) | 362 | && usb_trylock_device (hcd->self.root_hub) |
363 | ) { | 363 | ) { |
364 | ohci_vdbg (ohci, "autosuspend\n"); | 364 | ohci_vdbg (ohci, "autosuspend\n"); |
365 | (void) ohci_hub_suspend (hcd); | 365 | (void) ohci_bus_suspend (hcd); |
366 | usb_unlock_device (hcd->self.root_hub); | 366 | usb_unlock_device (hcd->self.root_hub); |
367 | } | 367 | } |
368 | #endif | 368 | #endif |
diff --git a/drivers/usb/host/ohci-lh7a404.c b/drivers/usb/host/ohci-lh7a404.c index 71d975ae78bd..e2ed55b69f86 100644 --- a/drivers/usb/host/ohci-lh7a404.c +++ b/drivers/usb/host/ohci-lh7a404.c | |||
@@ -194,8 +194,8 @@ static const struct hc_driver ohci_lh7a404_hc_driver = { | |||
194 | .hub_status_data = ohci_hub_status_data, | 194 | .hub_status_data = ohci_hub_status_data, |
195 | .hub_control = ohci_hub_control, | 195 | .hub_control = ohci_hub_control, |
196 | #ifdef CONFIG_PM | 196 | #ifdef CONFIG_PM |
197 | .hub_suspend = ohci_hub_suspend, | 197 | .bus_suspend = ohci_bus_suspend, |
198 | .hub_resume = ohci_hub_resume, | 198 | .bus_resume = ohci_bus_resume, |
199 | #endif | 199 | #endif |
200 | .start_port_reset = ohci_start_port_reset, | 200 | .start_port_reset = ohci_start_port_reset, |
201 | }; | 201 | }; |
diff --git a/drivers/usb/host/ohci-omap.c b/drivers/usb/host/ohci-omap.c index b3498b9b965f..982cdca22516 100644 --- a/drivers/usb/host/ohci-omap.c +++ b/drivers/usb/host/ohci-omap.c | |||
@@ -421,8 +421,8 @@ static const struct hc_driver ohci_omap_hc_driver = { | |||
421 | .hub_status_data = ohci_hub_status_data, | 421 | .hub_status_data = ohci_hub_status_data, |
422 | .hub_control = ohci_hub_control, | 422 | .hub_control = ohci_hub_control, |
423 | #ifdef CONFIG_PM | 423 | #ifdef CONFIG_PM |
424 | .hub_suspend = ohci_hub_suspend, | 424 | .bus_suspend = ohci_bus_suspend, |
425 | .hub_resume = ohci_hub_resume, | 425 | .bus_resume = ohci_bus_resume, |
426 | #endif | 426 | #endif |
427 | .start_port_reset = ohci_start_port_reset, | 427 | .start_port_reset = ohci_start_port_reset, |
428 | }; | 428 | }; |
diff --git a/drivers/usb/host/ohci-pci.c b/drivers/usb/host/ohci-pci.c index 99a0ad41aec5..a8dde8b75691 100644 --- a/drivers/usb/host/ohci-pci.c +++ b/drivers/usb/host/ohci-pci.c | |||
@@ -195,8 +195,8 @@ static const struct hc_driver ohci_pci_hc_driver = { | |||
195 | .hub_status_data = ohci_hub_status_data, | 195 | .hub_status_data = ohci_hub_status_data, |
196 | .hub_control = ohci_hub_control, | 196 | .hub_control = ohci_hub_control, |
197 | #ifdef CONFIG_PM | 197 | #ifdef CONFIG_PM |
198 | .hub_suspend = ohci_hub_suspend, | 198 | .bus_suspend = ohci_bus_suspend, |
199 | .hub_resume = ohci_hub_resume, | 199 | .bus_resume = ohci_bus_resume, |
200 | #endif | 200 | #endif |
201 | .start_port_reset = ohci_start_port_reset, | 201 | .start_port_reset = ohci_start_port_reset, |
202 | }; | 202 | }; |
diff --git a/drivers/usb/host/ohci-ppc-soc.c b/drivers/usb/host/ohci-ppc-soc.c index ec20710e99fe..228845eb7eab 100644 --- a/drivers/usb/host/ohci-ppc-soc.c +++ b/drivers/usb/host/ohci-ppc-soc.c | |||
@@ -164,8 +164,8 @@ static const struct hc_driver ohci_ppc_soc_hc_driver = { | |||
164 | .hub_status_data = ohci_hub_status_data, | 164 | .hub_status_data = ohci_hub_status_data, |
165 | .hub_control = ohci_hub_control, | 165 | .hub_control = ohci_hub_control, |
166 | #ifdef CONFIG_PM | 166 | #ifdef CONFIG_PM |
167 | .hub_suspend = ohci_hub_suspend, | 167 | .bus_suspend = ohci_bus_suspend, |
168 | .hub_resume = ohci_hub_resume, | 168 | .bus_resume = ohci_bus_resume, |
169 | #endif | 169 | #endif |
170 | .start_port_reset = ohci_start_port_reset, | 170 | .start_port_reset = ohci_start_port_reset, |
171 | }; | 171 | }; |
diff --git a/drivers/usb/host/ohci-pxa27x.c b/drivers/usb/host/ohci-pxa27x.c index 2e7b48502a3d..d287dcccd415 100644 --- a/drivers/usb/host/ohci-pxa27x.c +++ b/drivers/usb/host/ohci-pxa27x.c | |||
@@ -279,8 +279,8 @@ static const struct hc_driver ohci_pxa27x_hc_driver = { | |||
279 | .hub_status_data = ohci_hub_status_data, | 279 | .hub_status_data = ohci_hub_status_data, |
280 | .hub_control = ohci_hub_control, | 280 | .hub_control = ohci_hub_control, |
281 | #ifdef CONFIG_PM | 281 | #ifdef CONFIG_PM |
282 | .hub_suspend = ohci_hub_suspend, | 282 | .bus_suspend = ohci_bus_suspend, |
283 | .hub_resume = ohci_hub_resume, | 283 | .bus_resume = ohci_bus_resume, |
284 | #endif | 284 | #endif |
285 | .start_port_reset = ohci_start_port_reset, | 285 | .start_port_reset = ohci_start_port_reset, |
286 | }; | 286 | }; |
diff --git a/drivers/usb/host/ohci-s3c2410.c b/drivers/usb/host/ohci-s3c2410.c index 922e2a6f46ef..3225d455f459 100644 --- a/drivers/usb/host/ohci-s3c2410.c +++ b/drivers/usb/host/ohci-s3c2410.c | |||
@@ -449,8 +449,8 @@ static const struct hc_driver ohci_s3c2410_hc_driver = { | |||
449 | .hub_status_data = ohci_s3c2410_hub_status_data, | 449 | .hub_status_data = ohci_s3c2410_hub_status_data, |
450 | .hub_control = ohci_s3c2410_hub_control, | 450 | .hub_control = ohci_s3c2410_hub_control, |
451 | #ifdef CONFIG_PM | 451 | #ifdef CONFIG_PM |
452 | .hub_suspend = ohci_hub_suspend, | 452 | .bus_suspend = ohci_bus_suspend, |
453 | .hub_resume = ohci_hub_resume, | 453 | .bus_resume = ohci_bus_resume, |
454 | #endif | 454 | #endif |
455 | .start_port_reset = ohci_start_port_reset, | 455 | .start_port_reset = ohci_start_port_reset, |
456 | }; | 456 | }; |
diff --git a/drivers/usb/host/ohci-sa1111.c b/drivers/usb/host/ohci-sa1111.c index 13324b7f9c59..fb3221ebbb29 100644 --- a/drivers/usb/host/ohci-sa1111.c +++ b/drivers/usb/host/ohci-sa1111.c | |||
@@ -236,8 +236,8 @@ static const struct hc_driver ohci_sa1111_hc_driver = { | |||
236 | .hub_status_data = ohci_hub_status_data, | 236 | .hub_status_data = ohci_hub_status_data, |
237 | .hub_control = ohci_hub_control, | 237 | .hub_control = ohci_hub_control, |
238 | #ifdef CONFIG_PM | 238 | #ifdef CONFIG_PM |
239 | .hub_suspend = ohci_hub_suspend, | 239 | .bus_suspend = ohci_bus_suspend, |
240 | .hub_resume = ohci_hub_resume, | 240 | .bus_resume = ohci_bus_resume, |
241 | #endif | 241 | #endif |
242 | .start_port_reset = ohci_start_port_reset, | 242 | .start_port_reset = ohci_start_port_reset, |
243 | }; | 243 | }; |
diff --git a/drivers/usb/host/sl811-hcd.c b/drivers/usb/host/sl811-hcd.c index b5e7a478bc01..1e47c1f86e70 100644 --- a/drivers/usb/host/sl811-hcd.c +++ b/drivers/usb/host/sl811-hcd.c | |||
@@ -1363,7 +1363,7 @@ error: | |||
1363 | #ifdef CONFIG_PM | 1363 | #ifdef CONFIG_PM |
1364 | 1364 | ||
1365 | static int | 1365 | static int |
1366 | sl811h_hub_suspend(struct usb_hcd *hcd) | 1366 | sl811h_bus_suspend(struct usb_hcd *hcd) |
1367 | { | 1367 | { |
1368 | // SOFs off | 1368 | // SOFs off |
1369 | DBG("%s\n", __FUNCTION__); | 1369 | DBG("%s\n", __FUNCTION__); |
@@ -1371,7 +1371,7 @@ sl811h_hub_suspend(struct usb_hcd *hcd) | |||
1371 | } | 1371 | } |
1372 | 1372 | ||
1373 | static int | 1373 | static int |
1374 | sl811h_hub_resume(struct usb_hcd *hcd) | 1374 | sl811h_bus_resume(struct usb_hcd *hcd) |
1375 | { | 1375 | { |
1376 | // SOFs on | 1376 | // SOFs on |
1377 | DBG("%s\n", __FUNCTION__); | 1377 | DBG("%s\n", __FUNCTION__); |
@@ -1380,8 +1380,8 @@ sl811h_hub_resume(struct usb_hcd *hcd) | |||
1380 | 1380 | ||
1381 | #else | 1381 | #else |
1382 | 1382 | ||
1383 | #define sl811h_hub_suspend NULL | 1383 | #define sl811h_bus_suspend NULL |
1384 | #define sl811h_hub_resume NULL | 1384 | #define sl811h_bus_resume NULL |
1385 | 1385 | ||
1386 | #endif | 1386 | #endif |
1387 | 1387 | ||
@@ -1623,8 +1623,8 @@ static struct hc_driver sl811h_hc_driver = { | |||
1623 | */ | 1623 | */ |
1624 | .hub_status_data = sl811h_hub_status_data, | 1624 | .hub_status_data = sl811h_hub_status_data, |
1625 | .hub_control = sl811h_hub_control, | 1625 | .hub_control = sl811h_hub_control, |
1626 | .hub_suspend = sl811h_hub_suspend, | 1626 | .bus_suspend = sl811h_bus_suspend, |
1627 | .hub_resume = sl811h_hub_resume, | 1627 | .bus_resume = sl811h_bus_resume, |
1628 | }; | 1628 | }; |
1629 | 1629 | ||
1630 | /*-------------------------------------------------------------------------*/ | 1630 | /*-------------------------------------------------------------------------*/ |
@@ -1791,7 +1791,7 @@ sl811h_suspend(struct device *dev, pm_message_t state) | |||
1791 | int retval = 0; | 1791 | int retval = 0; |
1792 | 1792 | ||
1793 | if (state.event == PM_EVENT_FREEZE) | 1793 | if (state.event == PM_EVENT_FREEZE) |
1794 | retval = sl811h_hub_suspend(hcd); | 1794 | retval = sl811h_bus_suspend(hcd); |
1795 | else if (state.event == PM_EVENT_SUSPEND) | 1795 | else if (state.event == PM_EVENT_SUSPEND) |
1796 | port_power(sl811, 0); | 1796 | port_power(sl811, 0); |
1797 | if (retval == 0) | 1797 | if (retval == 0) |
@@ -1816,7 +1816,7 @@ sl811h_resume(struct device *dev) | |||
1816 | } | 1816 | } |
1817 | 1817 | ||
1818 | dev->power.power_state = PMSG_ON; | 1818 | dev->power.power_state = PMSG_ON; |
1819 | return sl811h_hub_resume(hcd); | 1819 | return sl811h_bus_resume(hcd); |
1820 | } | 1820 | } |
1821 | 1821 | ||
1822 | #else | 1822 | #else |
diff --git a/drivers/usb/host/uhci-hcd.c b/drivers/usb/host/uhci-hcd.c index 6df555e3d97c..72cd1576d20c 100644 --- a/drivers/usb/host/uhci-hcd.c +++ b/drivers/usb/host/uhci-hcd.c | |||
@@ -804,8 +804,8 @@ static const struct hc_driver uhci_driver = { | |||
804 | #ifdef CONFIG_PM | 804 | #ifdef CONFIG_PM |
805 | .suspend = uhci_suspend, | 805 | .suspend = uhci_suspend, |
806 | .resume = uhci_resume, | 806 | .resume = uhci_resume, |
807 | .hub_suspend = uhci_rh_suspend, | 807 | .bus_suspend = uhci_rh_suspend, |
808 | .hub_resume = uhci_rh_resume, | 808 | .bus_resume = uhci_rh_resume, |
809 | #endif | 809 | #endif |
810 | .stop = uhci_stop, | 810 | .stop = uhci_stop, |
811 | 811 | ||