]> git.karo-electronics.de Git - karo-tx-linux.git/blobdiff - drivers/gpio/pca953x.c
net: ibm_newemac: convert to hw_features
[karo-tx-linux.git] / drivers / gpio / pca953x.c
index 2fc25dec7cf5371ccd1a405fae65d622af5352e8..583e92592073647481d52acf81cd1a520d0e9d85 100644 (file)
@@ -395,13 +395,13 @@ static int pca953x_irq_setup(struct pca953x_chip *chip,
                for (lvl = 0; lvl < chip->gpio_chip.ngpio; lvl++) {
                        int irq = lvl + chip->irq_base;
 
-                       set_irq_chip_data(irq, chip);
-                       set_irq_chip_and_handler(irq, &pca953x_irq_chip,
+                       irq_set_chip_data(irq, chip);
+                       irq_set_chip_and_handler(irq, &pca953x_irq_chip,
                                                 handle_edge_irq);
 #ifdef CONFIG_ARM
                        set_irq_flags(irq, IRQF_VALID);
 #else
-                       set_irq_noprobe(irq);
+                       irq_set_noprobe(irq);
 #endif
                }