aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mfd
diff options
context:
space:
mode:
authorAshish Jangam <ashish.jangam@kpitcummins.com>2013-03-18 14:42:38 +0530
committerSamuel Ortiz <sameo@linux.intel.com>2013-04-09 10:09:26 +0200
commit3cec5f4e7536de1c2c1e9ae6be9bf2d62c783262 (patch)
tree0dd0dabbdb63a79f16884a1e29de0f453560cc07 /drivers/mfd
parentmfd: omap-usb-tll: Add device tree support and binding information (diff)
downloadlinux-dev-3cec5f4e7536de1c2c1e9ae6be9bf2d62c783262.tar.xz
linux-dev-3cec5f4e7536de1c2c1e9ae6be9bf2d62c783262.zip
mfd: da9055: Change irq state to default
This patch changes the irq state from high to the now default low. Because the default PMIC irq state of DA9055 got changed from high to low. This change should not affect any of the existing users since all of them use active low state. This patch has been tested on smdkv6410. Signed-off-by: Ashish <ashish.jangam@kpitcummins.com> Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Diffstat (limited to 'drivers/mfd')
-rw-r--r--drivers/mfd/da9055-core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/da9055-core.c b/drivers/mfd/da9055-core.c
index f56a1a9f7777..49cb23d37469 100644
--- a/drivers/mfd/da9055-core.c
+++ b/drivers/mfd/da9055-core.c
@@ -391,7 +391,7 @@ int da9055_device_init(struct da9055 *da9055)
da9055->irq_base = pdata->irq_base;
ret = regmap_add_irq_chip(da9055->regmap, da9055->chip_irq,
- IRQF_TRIGGER_HIGH | IRQF_ONESHOT,
+ IRQF_TRIGGER_LOW | IRQF_ONESHOT,
da9055->irq_base, &da9055_regmap_irq_chip,
&da9055->irq_data);
if (ret < 0)