Commit 08f1b807 authored by Thomas Gleixner's avatar Thomas Gleixner

gpio: Fold irq_set_chip/irq_set_handler to irq_set_chip_and_handler

Converted with coccinelle.
Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
Acked-by: default avatarGrant Likely <grant.likely@secretlab.ca>
LKML-Reference: <20110324212509.118888535@linutronix.de>
parent b51804bc
...@@ -315,8 +315,8 @@ static int pl061_probe(struct amba_device *dev, const struct amba_id *id) ...@@ -315,8 +315,8 @@ static int pl061_probe(struct amba_device *dev, const struct amba_id *id)
else else
pl061_direction_input(&chip->gc, i); pl061_direction_input(&chip->gc, i);
irq_set_chip(i + chip->irq_base, &pl061_irqchip); irq_set_chip_and_handler(i + chip->irq_base, &pl061_irqchip,
irq_set_handler(i + chip->irq_base, handle_simple_irq); handle_simple_irq);
set_irq_flags(i+chip->irq_base, IRQF_VALID); set_irq_flags(i+chip->irq_base, IRQF_VALID);
irq_set_chip_data(i + chip->irq_base, chip); irq_set_chip_data(i + chip->irq_base, chip);
} }
......
...@@ -583,8 +583,7 @@ static void sx150x_remove_irq_chip(struct sx150x_chip *chip) ...@@ -583,8 +583,7 @@ static void sx150x_remove_irq_chip(struct sx150x_chip *chip)
for (n = 0; n < chip->dev_cfg->ngpios; ++n) { for (n = 0; n < chip->dev_cfg->ngpios; ++n) {
irq = chip->irq_base + n; irq = chip->irq_base + n;
irq_set_handler(irq, NULL); irq_set_chip_and_handler(irq, NULL, NULL);
irq_set_chip(irq, NULL);
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment