From: Geert Uytterhoeven Date: Thu, 24 Oct 2019 12:22:24 +0000 (+0200) Subject: gpio: rcar: Use proper irq_chip name X-Git-Tag: v5.5-rc1~94^2~12^2~12 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f932a68695e4c7d92e721d2c23580d9f35494662;p=thirdparty%2Flinux.git gpio: rcar: Use proper irq_chip name The irq_chip .name field should contain the device's class name, not the instance's name. Signed-off-by: Geert Uytterhoeven Signed-off-by: Bartosz Golaszewski --- diff --git a/drivers/gpio/gpio-rcar.c b/drivers/gpio/gpio-rcar.c index d7e6e68c25aff..f800b250971c7 100644 --- a/drivers/gpio/gpio-rcar.c +++ b/drivers/gpio/gpio-rcar.c @@ -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;