pinctrl: starfive: Use a static name for the GPIO irq_chip

Drop the device name used for the GPIO irq_chip and replace it
with something static. The information is still available from
debugfs and carried as part of the irqdomain.

Suggested-by: Emil Renner Berthing <kernel@esmil.dk>
Signed-off-by: Marc Zyngier <maz@kernel.org>
Cc: Linus Walleij <linus.walleij@linaro.org>
Cc: Bartosz Golaszewski <brgl@bgdev.pl>
Link: https://lore.kernel.org/r/20220211092345.1093332-1-maz@kernel.org
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>

authored by Marc Zyngier and committed by Linus Walleij 64fd52a4 e9f7b922

+1 -1
+1 -1
drivers/pinctrl/pinctrl-starfive.c
··· 1164 1164 } 1165 1165 1166 1166 static struct irq_chip starfive_irq_chip = { 1167 + .name = "StarFive GPIO", 1167 1168 .irq_ack = starfive_irq_ack, 1168 1169 .irq_mask = starfive_irq_mask, 1169 1170 .irq_mask_ack = starfive_irq_mask_ack, ··· 1309 1308 sfp->gc.ngpio = NR_GPIOS; 1310 1309 1311 1310 starfive_irq_chip.parent_device = dev; 1312 - starfive_irq_chip.name = sfp->gc.label; 1313 1311 1314 1312 sfp->gc.irq.chip = &starfive_irq_chip; 1315 1313 sfp->gc.irq.parent_handler = starfive_gpio_irq_handler;