diff options
author | Yunfan Zhang <yfzhang@marvell.com> | 2012-09-08 06:53:25 -0400 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2012-09-08 23:05:45 -0400 |
commit | 81380739516730124067576c9cc9f2418be5bf36 (patch) | |
tree | ef6c9eda0f647a1cf8fe168d624090c6d60d53b1 /drivers/base | |
parent | 36ac914ba2a5f1a14c5e0bf5d33bc20016d50940 (diff) |
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.c | 2 |
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, | |||
226 | struct regmap_irq_chip_data *data = h->host_data; | 226 | struct regmap_irq_chip_data *data = h->host_data; |
227 | 227 | ||
228 | irq_set_chip_data(virq, data); | 228 | irq_set_chip_data(virq, data); |
229 | irq_set_chip_and_handler(virq, &data->irq_chip, handle_edge_irq); | 229 | irq_set_chip(virq, &data->irq_chip); |
230 | irq_set_nested_thread(virq, 1); | 230 | irq_set_nested_thread(virq, 1); |
231 | 231 | ||
232 | /* ARM needs us to explicitly flag the IRQ as valid | 232 | /* ARM needs us to explicitly flag the IRQ as valid |