ralink: fix typo in gpio irq handling

Signed-off-by: John Crispin <blogic@openwrt.org>

SVN-Revision: 39018
master
John Crispin 11 years ago
parent a65c9e5b20
commit 09a933ed73
  1. 4
      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;
+}

Loading…
Cancel
Save