diff options
author | David Brownell <david-b@pacbell.net> | 2005-04-18 20:39:23 -0400 |
---|---|---|
committer | Greg K-H <gregkh@suse.de> | 2005-04-18 20:39:23 -0400 |
commit | 9a5d3e98dd31abcecbf4533b81866d440cc0f106 (patch) | |
tree | 8638550bd50ff0fdc3b097d0643b5efed3516633 /drivers/usb/host/ehci-sched.c | |
parent | 27d72e8572336d9f4e17a12ac924cb5223a5758d (diff) |
[PATCH] USB: hcd suspend uses pm_message_t
This patch includes minor "sparse -Wbitwise" updates for the PCI based
HCDs. Almost all of them involve just changing the second parameter of the
suspend() method to a pm_message_t ... the others relate to how the EHCI
code walks in-memory data structures. (There's a minor bug fixed there too
... affecting the big-endian sysfs async schedule dump.)
Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Index: gregkh-2.6/drivers/usb/core/hcd.h
===================================================================
Diffstat (limited to 'drivers/usb/host/ehci-sched.c')
-rw-r--r-- | drivers/usb/host/ehci-sched.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/host/ehci-sched.c b/drivers/usb/host/ehci-sched.c index f6c86354e304..2fa1ffee5ff3 100644 --- a/drivers/usb/host/ehci-sched.c +++ b/drivers/usb/host/ehci-sched.c | |||
@@ -310,9 +310,9 @@ static int qh_link_periodic (struct ehci_hcd *ehci, struct ehci_qh *qh) | |||
310 | 310 | ||
311 | for (i = qh->start; i < ehci->periodic_size; i += period) { | 311 | for (i = qh->start; i < ehci->periodic_size; i += period) { |
312 | union ehci_shadow *prev = &ehci->pshadow [i]; | 312 | union ehci_shadow *prev = &ehci->pshadow [i]; |
313 | u32 *hw_p = &ehci->periodic [i]; | 313 | __le32 *hw_p = &ehci->periodic [i]; |
314 | union ehci_shadow here = *prev; | 314 | union ehci_shadow here = *prev; |
315 | u32 type = 0; | 315 | __le32 type = 0; |
316 | 316 | ||
317 | /* skip the iso nodes at list head */ | 317 | /* skip the iso nodes at list head */ |
318 | while (here.ptr) { | 318 | while (here.ptr) { |