diff options
-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 |