From 28a2bbb153c0caba812bd5bc76d6cb94741e2069 Mon Sep 17 00:00:00 2001 From: blogic Date: Mon, 9 Dec 2013 17:29:24 +0000 Subject: [PATCH] ralink: fix typo in gpio irq handling Signed-off-by: John Crispin git-svn-id: svn://svn.openwrt.org/openwrt/trunk@39018 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- .../0006-GPIO-MIPS-ralink-add-gpio-driver-for-ralink-SoC.patch | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/target/linux/ramips/patches-3.10/0006-GPIO-MIPS-ralink-add-gpio-driver-for-ralink-SoC.patch b/target/linux/ramips/patches-3.10/0006-GPIO-MIPS-ralink-add-gpio-driver-for-ralink-SoC.patch index ffd360a2c2..fd7f7f4f03 100644 --- a/target/linux/ramips/patches-3.10/0006-GPIO-MIPS-ralink-add-gpio-driver-for-ralink-SoC.patch +++ b/target/linux/ramips/patches-3.10/0006-GPIO-MIPS-ralink-add-gpio-driver-for-ralink-SoC.patch @@ -277,12 +277,12 @@ Cc: linux-gpio@vger.kernel.org + if (type & IRQ_TYPE_EDGE_RISING) + rg->rising |= mask; + else -+ rg->rising &= mask; ++ rg->rising &= ~mask; + + if (type & IRQ_TYPE_EDGE_FALLING) + rg->falling |= mask; + else -+ rg->falling &= mask; ++ rg->falling &= ~mask; + + return 0; +} -- 2.11.0