From: Yunfan Zhang Date: Sat, 8 Sep 2012 10:53:25 +0000 (-0700) Subject: regmap: no need primary handler for nested irq X-Git-Tag: next-20120910~26^2^2 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=81380739516730124067576c9cc9f2418be5bf36;p=karo-tx-linux.git 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 Signed-off-by: Mark Brown --- 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