aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHauke Mehrtens <hauke@openwrt.org>2015-07-14 18:51:23 +0000
committerHauke Mehrtens <hauke@openwrt.org>2015-07-14 18:51:23 +0000
commit275a4a722e0687b8b3169cb9b75178e73315e710 (patch)
tree9f597b48656d72c560078af2b4fc8e7bc6c40ab9
parentb4018fe87961a792aa0f953f53d8561c69fa33c6 (diff)
downloadmaster-187ad058-275a4a722e0687b8b3169cb9b75178e73315e710.tar.gz
master-187ad058-275a4a722e0687b8b3169cb9b75178e73315e710.tar.bz2
master-187ad058-275a4a722e0687b8b3169cb9b75178e73315e710.zip
bcm53xx: fix usb3 build with kernel 4.1
One argument was removed with kernel 4.1 from xhci_handshake() which caused a compile error. Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@46369 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r--target/linux/bcm53xx/patches-4.1/820-xhci-add-Broadcom-specific-fake-doorbell.patch2
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/bcm53xx/patches-4.1/820-xhci-add-Broadcom-specific-fake-doorbell.patch b/target/linux/bcm53xx/patches-4.1/820-xhci-add-Broadcom-specific-fake-doorbell.patch
index 9a87a75dd4..04d35437b1 100644
--- a/target/linux/bcm53xx/patches-4.1/820-xhci-add-Broadcom-specific-fake-doorbell.patch
+++ b/target/linux/bcm53xx/patches-4.1/820-xhci-add-Broadcom-specific-fake-doorbell.patch
@@ -64,7 +64,7 @@ Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
+ /*
+ * Wait for the HCHalted Status bit to be 0 to indicate the host is running.
+ */
-+ ret = xhci_handshake(xhci, &xhci->op_regs->status,
++ ret = xhci_handshake(&xhci->op_regs->status,
+ STS_HALT, 0, XHCI_MAX_HALT_USEC);
+
+ if (ret == -ETIMEDOUT) {