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 <stern@xxxxxxxxxxxxxxxxxxx> Reported-by: kbuild test robot <fengguang.wu@xxxxxxxxx> --- [as1725] drivers/usb/host/ehci-sched.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: usb-3.12/drivers/usb/host/ehci-sched.c =================================================================== --- usb-3.12.orig/drivers/usb/host/ehci-sched.c +++ usb-3.12/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 ) { -- To unsubscribe from this list: send the line "unsubscribe linux-usb" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html