ralink: fix c&p error in gpio driver
[openwrt.git] / target / linux / ramips / patches-3.10 / 0006-GPIO-MIPS-ralink-add-gpio-driver-for-ralink-SoC.patch
index 989d2f3..ffd360a 100644 (file)
@@ -271,7 +271,7 @@ Cc: linux-gpio@vger.kernel.org
 +              if ((rg->rising | rg->falling) & mask)
 +                      return 0;
 +
 +              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)
 +      }
 +
 +      if (type & IRQ_TYPE_EDGE_RISING)
@@ -279,7 +279,7 @@ Cc: linux-gpio@vger.kernel.org
 +      else
 +              rg->rising &= mask;
 +
 +      else
 +              rg->rising &= mask;
 +
-+      if (type & IRQ_TYPE_EDGE_RISING)
++      if (type & IRQ_TYPE_EDGE_FALLING)
 +              rg->falling |= mask;
 +      else
 +              rg->falling &= mask;
 +              rg->falling |= mask;
 +      else
 +              rg->falling &= mask;