projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b74f045
)
gpio: rcar: Use proper irq_chip name
author
Geert Uytterhoeven
<geert+renesas@glider.be>
Thu, 24 Oct 2019 12:22:24 +0000
(14:22 +0200)
committer
Bartosz 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
patch
|
blob
|
history
diff --git
a/drivers/gpio/gpio-rcar.c
b/drivers/gpio/gpio-rcar.c
index d7e6e68c25aff609a0c7cabe4b61b8334bf53446..f800b250971c7caca3dd8bc3cee5967319e6737d 100644
(file)
--- 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;