diff options
author | John Crispin <blogic@openwrt.org> | 2014-10-06 06:11:37 +0000 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2014-10-06 06:11:37 +0000 |
commit | c86710e11f3833aa6afed1e448593c91881d3c7a (patch) | |
tree | 961cd90b4168ffe22736f4dcc35507b134394190 | |
parent | d33f77a3721ef9c1db798994ff0a02ae90bf404a (diff) | |
download | upstream-c86710e11f3833aa6afed1e448593c91881d3c7a.tar.gz upstream-c86710e11f3833aa6afed1e448593c91881d3c7a.tar.bz2 upstream-c86710e11f3833aa6afed1e448593c91881d3c7a.zip |
ralink: add dwc2 reset patch
this allows people building custom images to use dwc2 instead of dwc_otg
Signed-off-by: John Crispin <blogic@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/branches/barrier_breaker@42801 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | target/linux/ramips/patches-3.10/0035-USB-dwc2.patch | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/target/linux/ramips/patches-3.10/0035-USB-dwc2.patch b/target/linux/ramips/patches-3.10/0035-USB-dwc2.patch new file mode 100644 index 0000000000..90e8ee5e6b --- /dev/null +++ b/target/linux/ramips/patches-3.10/0035-USB-dwc2.patch @@ -0,0 +1,19 @@ +--- a/drivers/staging/dwc2/hcd.c ++++ b/drivers/staging/dwc2/hcd.c +@@ -47,6 +47,7 @@ + #include <linux/io.h> + #include <linux/slab.h> + #include <linux/usb.h> ++#include <linux/reset.h> + + #include <linux/usb/hcd.h> + #include <linux/usb/ch11.h> +@@ -2712,6 +2713,8 @@ int dwc2_hcd_init(struct dwc2_hsotg *hso + + dev_dbg(hsotg->dev, "DWC OTG HCD INIT\n"); + ++ device_reset(hsotg->dev); ++ + /* + * Attempt to ensure this device is really a DWC_otg Controller. + * Read and verify the GSNPSID register contents. The value should be |