mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-24 20:54:10 +08:00
USB: EHCI: fix type mismatch in check_intr_schedule
This patch fixes a type mismatch in ehci-hcd caused by commit
b35c5009bb
(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 <stern@rowland.harvard.edu>
Reported-by: kbuild test robot <fengguang.wu@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
9afcdb10ad
commit
5d8f681f3d
@ -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
|
||||
)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user