gpio: em: 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 <geert+renesas@glider.be>
Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
This commit is contained in:
Geert Uytterhoeven 2019-10-24 14:22:23 +02:00 коммит произвёл Bartosz Golaszewski
Родитель bd84f2881a
Коммит b74f0456c1
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -322,7 +322,7 @@ static int em_gio_probe(struct platform_device *pdev)
gpio_chip->ngpio = ngpios; gpio_chip->ngpio = ngpios;
irq_chip = &p->irq_chip; irq_chip = &p->irq_chip;
irq_chip->name = name; irq_chip->name = "gpio-em";
irq_chip->irq_mask = em_gio_irq_disable; irq_chip->irq_mask = em_gio_irq_disable;
irq_chip->irq_unmask = em_gio_irq_enable; irq_chip->irq_unmask = em_gio_irq_enable;
irq_chip->irq_set_type = em_gio_irq_set_type; irq_chip->irq_set_type = em_gio_irq_set_type;