aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Brown <broonie@opensource.wolfsonmicro.com>2012-05-13 13:53:23 -0400
committerMark Brown <broonie@opensource.wolfsonmicro.com>2012-05-13 14:14:02 -0400
commit8614419451d88bf99fff7f5e468fe45f8450891e (patch)
tree1a2ffca8a37b8e88612d9f168afc53ca880e8d96
parentdd775ae2549217d3ae09363e3edb305d0fa19928 (diff)
mfd: da9052: Fix genirq abuse
Rather than using the pointer passed back by the regmap API (or complaining because that wasn't actually being set) the da9052 driver was having some fun and games peering through genirq and regmap internals. Fix the driver to use the API as expected. Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
-rw-r--r--drivers/mfd/da9052-core.c8
-rw-r--r--include/linux/mfd/da9052/da9052.h1
2 files changed, 4 insertions, 5 deletions
diff --git a/drivers/mfd/da9052-core.c b/drivers/mfd/da9052-core.c
index 7ff313fe9fb1..7776aff46269 100644
--- a/drivers/mfd/da9052-core.c
+++ b/drivers/mfd/da9052-core.c
@@ -659,12 +659,11 @@ int __devinit da9052_device_init(struct da9052 *da9052, u8 chip_id)
659 ret = regmap_add_irq_chip(da9052->regmap, da9052->chip_irq, 659 ret = regmap_add_irq_chip(da9052->regmap, da9052->chip_irq,
660 IRQF_TRIGGER_LOW | IRQF_ONESHOT, 660 IRQF_TRIGGER_LOW | IRQF_ONESHOT,
661 da9052->irq_base, &da9052_regmap_irq_chip, 661 da9052->irq_base, &da9052_regmap_irq_chip,
662 NULL); 662 &da9052->irq_data);
663 if (ret < 0) 663 if (ret < 0)
664 goto regmap_err; 664 goto regmap_err;
665 665
666 desc = irq_to_desc(da9052->chip_irq); 666 da9052->irq_base = regmap_irq_chip_get_base(da9052->irq_data);
667 da9052->irq_base = regmap_irq_chip_get_base(desc->action->dev_id);
668 667
669 ret = mfd_add_devices(da9052->dev, -1, da9052_subdev_info, 668 ret = mfd_add_devices(da9052->dev, -1, da9052_subdev_info,
670 ARRAY_SIZE(da9052_subdev_info), NULL, 0); 669 ARRAY_SIZE(da9052_subdev_info), NULL, 0);
@@ -681,8 +680,7 @@ regmap_err:
681 680
682void da9052_device_exit(struct da9052 *da9052) 681void da9052_device_exit(struct da9052 *da9052)
683{ 682{
684 regmap_del_irq_chip(da9052->chip_irq, 683 regmap_del_irq_chip(da9052->chip_irq, da9052->irq_data);
685 irq_get_irq_data(da9052->irq_base)->chip_data);
686 mfd_remove_devices(da9052->dev); 684 mfd_remove_devices(da9052->dev);
687} 685}
688 686
diff --git a/include/linux/mfd/da9052/da9052.h b/include/linux/mfd/da9052/da9052.h
index 7ffbd6e9e7fc..8313cd9658e3 100644
--- a/include/linux/mfd/da9052/da9052.h
+++ b/include/linux/mfd/da9052/da9052.h
@@ -80,6 +80,7 @@ struct da9052 {
80 struct regmap *regmap; 80 struct regmap *regmap;
81 81
82 int irq_base; 82 int irq_base;
83 struct regmap_irq_chip_data *irq_data;
83 u8 chip_id; 84 u8 chip_id;
84 85
85 int chip_irq; 86 int chip_irq;