ralink: fix typo in gpio irq handling
Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 39018
This commit is contained in:
parent
a65c9e5b20
commit
09a933ed73
1 changed files with 2 additions and 2 deletions
|
@ -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…
Reference in a new issue