diff options
author | John Crispin <john@openwrt.org> | 2013-11-07 12:45:48 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2013-11-07 12:45:48 +0000 |
commit | 4bb29e9df63990153e8b0101021039cd27d387ad (patch) | |
tree | 1165c8a45d7abeb756ac5dcee0fb5a71a783922c /target | |
parent | 1a368e86168283b372939353b06f94ff951c7e1d (diff) | |
download | upstream-4bb29e9df63990153e8b0101021039cd27d387ad.tar.gz upstream-4bb29e9df63990153e8b0101021039cd27d387ad.tar.bz2 upstream-4bb29e9df63990153e8b0101021039cd27d387ad.zip |
ralink: fix c&p error in gpio driver
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 38668
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/ramips/patches-3.10/0006-GPIO-MIPS-ralink-add-gpio-driver-for-ralink-SoC.patch | 4 |
1 files 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 989d2f36d4..ffd360a2c2 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 @@ -271,7 +271,7 @@ Cc: linux-gpio@vger.kernel.org + if ((rg->rising | rg->falling) & mask) + return 0; + -+ type = IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_RISING; ++ type = IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING; + } + + if (type & IRQ_TYPE_EDGE_RISING) @@ -279,7 +279,7 @@ Cc: linux-gpio@vger.kernel.org + else + rg->rising &= mask; + -+ if (type & IRQ_TYPE_EDGE_RISING) ++ if (type & IRQ_TYPE_EDGE_FALLING) + rg->falling |= mask; + else + rg->falling &= mask; |