Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

gpio: aspeed: Remove reference to clock name in debounce warning message

HPLL is in fact not the clock we need. Remove the description of which clock we
failed to find a phandle to in order to avoid any further error.

Signed-off-by: Andrew Jeffery <andrew@aj.id.au>
Acked-by: Joel Stanley <joel@jms.id.au>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>

authored by

Andrew Jeffery and committed by
Linus Walleij
754c0458 f8b89b57

+1 -1
+1 -1
drivers/gpio/gpio-aspeed.c
··· 834 834 gpio->clk = of_clk_get(pdev->dev.of_node, 0); 835 835 if (IS_ERR(gpio->clk)) { 836 836 dev_warn(&pdev->dev, 837 - "No HPLL clock phandle provided, debouncing disabled\n"); 837 + "Failed to get clock from devicetree, debouncing disabled\n"); 838 838 gpio->clk = NULL; 839 839 } 840 840