diff options
author | John Klug <john.klug@multitech.com> | 2018-06-04 10:21:29 -0500 |
---|---|---|
committer | John Klug <john.klug@multitech.com> | 2018-06-04 10:21:29 -0500 |
commit | 90f57378fbfacd0ed0e6e11f02b1e60fab784518 (patch) | |
tree | 6d2ae69fc1f4cab3def2575707aba7f2b7fd36ae /recipes-kernel/linux/linux-3.12.70/mtr/linux-3.12-wl12xx-fix-threaded-irq-requested-with-NULL-handler.patch | |
parent | 7ce8011fb9ef377090fa047a3b75f2e91cd354a2 (diff) | |
download | meta-multitech-90f57378fbfacd0ed0e6e11f02b1e60fab784518.tar.gz meta-multitech-90f57378fbfacd0ed0e6e11f02b1e60fab784518.tar.bz2 meta-multitech-90f57378fbfacd0ed0e6e11f02b1e60fab784518.zip |
Add mtr stuff to mLinux
Diffstat (limited to 'recipes-kernel/linux/linux-3.12.70/mtr/linux-3.12-wl12xx-fix-threaded-irq-requested-with-NULL-handler.patch')
-rw-r--r-- | recipes-kernel/linux/linux-3.12.70/mtr/linux-3.12-wl12xx-fix-threaded-irq-requested-with-NULL-handler.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/recipes-kernel/linux/linux-3.12.70/mtr/linux-3.12-wl12xx-fix-threaded-irq-requested-with-NULL-handler.patch b/recipes-kernel/linux/linux-3.12.70/mtr/linux-3.12-wl12xx-fix-threaded-irq-requested-with-NULL-handler.patch new file mode 100644 index 0000000..de352af --- /dev/null +++ b/recipes-kernel/linux/linux-3.12.70/mtr/linux-3.12-wl12xx-fix-threaded-irq-requested-with-NULL-handler.patch @@ -0,0 +1,13 @@ +diff --git a/drivers/net/wireless/ti/wlcore/main.c b/drivers/net/wireless/ti/wlcore/main.c +index 38995f9..8543228 100644 +--- a/drivers/net/wireless/ti/wlcore/main.c ++++ b/drivers/net/wireless/ti/wlcore/main.c +@@ -5933,7 +5933,7 @@ static void wlcore_nvs_cb(const struct firmware *fw, void *context) + wl->if_ops = pdev_data->if_ops; + + if (wl->platform_quirks & WL12XX_PLATFORM_QUIRK_EDGE_IRQ) +- irqflags = IRQF_TRIGGER_RISING; ++ irqflags = IRQF_TRIGGER_RISING | IRQF_ONESHOT; + else + irqflags = IRQF_TRIGGER_HIGH | IRQF_ONESHOT; + |