summaryrefslogtreecommitdiff
path: root/target/linux/brcm2708/patches-3.10/0087-dwc_otg-make-fiq_split_enable-imply-fiq_fix_enable.patch
diff options
context:
space:
mode:
authorLudovic Pouzenc <ludovic@pouzenc.fr>2018-09-14 22:25:09 +0200
committerLudovic Pouzenc <ludovic@pouzenc.fr>2018-09-14 22:25:09 +0200
commit3362d9fb3a94d0909b79c290abc8db6abe4cca21 (patch)
tree35f9e4dfaeb691fe09fcd95b45dc440f0338a1b5 /target/linux/brcm2708/patches-3.10/0087-dwc_otg-make-fiq_split_enable-imply-fiq_fix_enable.patch
parent51e1f1476f74d6788b106a066dfebd8ec6ac1bd9 (diff)
downloadmtk-20170518-3362d9fb3a94d0909b79c290abc8db6abe4cca21.zip
mtk-20170518-3362d9fb3a94d0909b79c290abc8db6abe4cca21.tar.gz
mtk-20170518-3362d9fb3a94d0909b79c290abc8db6abe4cca21.tar.bz2
target/linux : drop many arch
Diffstat (limited to 'target/linux/brcm2708/patches-3.10/0087-dwc_otg-make-fiq_split_enable-imply-fiq_fix_enable.patch')
-rw-r--r--target/linux/brcm2708/patches-3.10/0087-dwc_otg-make-fiq_split_enable-imply-fiq_fix_enable.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/target/linux/brcm2708/patches-3.10/0087-dwc_otg-make-fiq_split_enable-imply-fiq_fix_enable.patch b/target/linux/brcm2708/patches-3.10/0087-dwc_otg-make-fiq_split_enable-imply-fiq_fix_enable.patch
deleted file mode 100644
index c8ba58e..0000000
--- a/target/linux/brcm2708/patches-3.10/0087-dwc_otg-make-fiq_split_enable-imply-fiq_fix_enable.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-From 635578168de091d59e7d1a837286cff86fb9badb Mon Sep 17 00:00:00 2001
-From: P33M <P33M@github.com>
-Date: Mon, 5 Aug 2013 11:42:12 +0100
-Subject: [PATCH 087/174] dwc_otg: make fiq_split_enable imply fiq_fix_enable
-
-Failing to set up the FIQ correctly would result in
-"IRQ 32: nobody cared" errors in dmesg.
----
- drivers/usb/host/dwc_otg/dwc_otg_driver.c | 6 ++++++
- 1 file changed, 6 insertions(+)
-
---- a/drivers/usb/host/dwc_otg/dwc_otg_driver.c
-+++ b/drivers/usb/host/dwc_otg/dwc_otg_driver.c
-@@ -1070,6 +1070,12 @@ static int __init dwc_otg_driver_init(vo
- int retval = 0;
- int error;
- struct device_driver *drv;
-+
-+ if(fiq_split_enable && !fiq_fix_enable) {
-+ printk(KERN_WARNING "dwc_otg: fiq_split_enable was set without fiq_fix_enable! Correcting.\n");
-+ fiq_fix_enable = 1;
-+ }
-+
- printk(KERN_INFO "%s: version %s (%s bus)\n", dwc_driver_name,
- DWC_DRIVER_VERSION,
- #ifdef LM_INTERFACE