aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/base
diff options
context:
space:
mode:
authorYunfan Zhang <yfzhang@marvell.com>2012-09-08 03:53:25 -0700
committerMark Brown <broonie@opensource.wolfsonmicro.com>2012-09-09 11:05:45 +0800
commit81380739516730124067576c9cc9f2418be5bf36 (patch)
treeef6c9eda0f647a1cf8fe168d624090c6d60d53b1 /drivers/base
parentregmap: irq: Add mask invert flag for enable register (diff)
downloadlinux-dev-81380739516730124067576c9cc9f2418be5bf36.tar.xz
linux-dev-81380739516730124067576c9cc9f2418be5bf36.zip
regmap: no need primary handler for nested irq
The primary handler will NOT be called if the interrupt nests into another interrupt thread. Remove it to avoid confusing. Signed-off-by: Yunfan Zhang <yfzhang@marvell.com> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'drivers/base')
-rw-r--r--drivers/base/regmap/regmap-irq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/base/regmap/regmap-irq.c b/drivers/base/regmap/regmap-irq.c
index 094f9988fdf2..5b6b1d8e6cc0 100644
--- a/drivers/base/regmap/regmap-irq.c
+++ b/drivers/base/regmap/regmap-irq.c
@@ -226,7 +226,7 @@ static int regmap_irq_map(struct irq_domain *h, unsigned int virq,
struct regmap_irq_chip_data *data = h->host_data;
irq_set_chip_data(virq, data);
- irq_set_chip_and_handler(virq, &data->irq_chip, handle_edge_irq);
+ irq_set_chip(virq, &data->irq_chip);
irq_set_nested_thread(virq, 1);
/* ARM needs us to explicitly flag the IRQ as valid