Skip to content

Commit 615279d

Browse files
refractionwareBartosz Golaszewski
authored andcommitted
gpio: bcm-kona: Add missing newline to dev_err format string
Add a missing newline to the format string of the "Couldn't get IRQ for bank..." error message. Fixes: 757651e ("gpio: bcm281xx: Add GPIO driver") Reviewed-by: Florian Fainelli <[email protected]> Reviewed-by: Markus Mayer <[email protected]> Signed-off-by: Artur Weber <[email protected]> Reviewed-by: Linus Walleij <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Bartosz Golaszewski <[email protected]>
1 parent 57f5db7 commit 615279d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/gpio/gpio-bcm-kona.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -659,7 +659,7 @@ static int bcm_kona_gpio_probe(struct platform_device *pdev)
659659
bank->irq = platform_get_irq(pdev, i);
660660
bank->kona_gpio = kona_gpio;
661661
if (bank->irq < 0) {
662-
dev_err(dev, "Couldn't get IRQ for bank %d", i);
662+
dev_err(dev, "Couldn't get IRQ for bank %d\n", i);
663663
ret = -ENOENT;
664664
goto err_irq_domain;
665665
}

0 commit comments

Comments
 (0)