diff options
author | Alan Stern <[email protected]> | 2013-10-18 11:13:08 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <[email protected]> | 2013-10-19 14:06:00 -0700 |
commit | 5d8f681f3d14880d5b509eb32a910ba90ef28c36 (patch) | |
tree | 8ff817d4b3ad37816e56ac2aee7e99d719b51036 | |
parent | 9afcdb10ade4c3f5bedb1c7de9dd37f7061819eb (diff) |
USB: EHCI: fix type mismatch in check_intr_schedule
This patch fixes a type mismatch in ehci-hcd caused by commit
b35c5009bbf6 (USB: EHCI: create per-TT bandwidth tables). The c_maskp
parameter in check_intr_schedule() was changed to point to unsigned
int rather than __hc32, but the prototype declaration wasn't adjusted
accordingly.
Signed-off-by: Alan Stern <[email protected]>
Reported-by: kbuild test robot <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r-- | drivers/usb/host/ehci-sched.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/host/ehci-sched.c b/drivers/usb/host/ehci-sched.c index 7ce5c2a2fe31..fbeb82e552b8 100644 --- a/drivers/usb/host/ehci-sched.c +++ b/drivers/usb/host/ehci-sched.c @@ -794,7 +794,7 @@ static int check_intr_schedule ( unsigned frame, unsigned uframe, struct ehci_qh *qh, - __hc32 *c_maskp, + unsigned *c_maskp, struct ehci_tt *tt ) { |