gpio: rcar: Use proper irq_chip name
authorGeert Uytterhoeven <geert+renesas@glider.be>
Thu, 24 Oct 2019 12:22:24 +0000 (14:22 +0200)
committerBartosz Golaszewski <bgolaszewski@baylibre.com>
Tue, 12 Nov 2019 15:30:30 +0000 (16:30 +0100)
The irq_chip .name field should contain the device's class name, not the
instance's name.

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
drivers/gpio/gpio-rcar.c

index d7e6e68..f800b25 100644 (file)
@@ -486,7 +486,7 @@ static int gpio_rcar_probe(struct platform_device *pdev)
        gpio_chip->ngpio = npins;
 
        irq_chip = &p->irq_chip;
-       irq_chip->name = name;
+       irq_chip->name = "gpio-rcar";
        irq_chip->parent_device = dev;
        irq_chip->irq_mask = gpio_rcar_irq_disable;
        irq_chip->irq_unmask = gpio_rcar_irq_enable;