diff options
author | Felix Fietkau <nbd@openwrt.org> | 2016-03-07 16:33:34 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2016-03-07 16:33:34 +0000 |
commit | d041e8b44b042d373b0b474ee69caed840f9a541 (patch) | |
tree | 4255b83b60fd526a74b68b5b55cc0da54d3f7ab6 /target/linux/ramips/patches-4.4/0032-USB-dwc2-add-device_reset.patch | |
parent | e559de239715f629edc90b9a0afa57cb918b56ca (diff) | |
download | upstream-d041e8b44b042d373b0b474ee69caed840f9a541.tar.gz upstream-d041e8b44b042d373b0b474ee69caed840f9a541.tar.bz2 upstream-d041e8b44b042d373b0b474ee69caed840f9a541.zip |
ramips: add linux 4.4 support, update mt7621 subtarget to 4.4
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 48951
Diffstat (limited to 'target/linux/ramips/patches-4.4/0032-USB-dwc2-add-device_reset.patch')
-rw-r--r-- | target/linux/ramips/patches-4.4/0032-USB-dwc2-add-device_reset.patch | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/target/linux/ramips/patches-4.4/0032-USB-dwc2-add-device_reset.patch b/target/linux/ramips/patches-4.4/0032-USB-dwc2-add-device_reset.patch new file mode 100644 index 0000000000..e77e02f677 --- /dev/null +++ b/target/linux/ramips/patches-4.4/0032-USB-dwc2-add-device_reset.patch @@ -0,0 +1,29 @@ +From a758e0870c6d1e4b0272f6e7f9efa9face5534bb Mon Sep 17 00:00:00 2001 +From: John Crispin <blogic@openwrt.org> +Date: Sun, 27 Jul 2014 09:49:07 +0100 +Subject: [PATCH 32/53] USB: dwc2: add device_reset() + +Signed-off-by: John Crispin <blogic@openwrt.org> +--- + drivers/usb/dwc2/hcd.c | 3 +++ + 1 file changed, 3 insertions(+) + +--- a/drivers/usb/dwc2/hcd.c ++++ b/drivers/usb/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> +@@ -3002,6 +3003,8 @@ int dwc2_hcd_init(struct dwc2_hsotg *hso + + retval = -ENOMEM; + ++ device_reset(hsotg->dev); ++ + hcfg = dwc2_readl(hsotg->regs + HCFG); + dev_dbg(hsotg->dev, "hcfg=%08x\n", hcfg); + |