summaryrefslogtreecommitdiffstats
path: root/drivers/gpio
diff options
context:
space:
mode:
authorAndrew Jeffery <andrew@aj.id.au>2017-08-08 15:37:36 +0930
committerLinus Walleij <linus.walleij@linaro.org>2017-08-15 11:26:08 +0200
commit754c04582a98fa2a24ff1b4c4b88964b114eb526 (patch)
treebbb22ca48a1e4ed158e85a1c92aabd04f71c2e4b /drivers/gpio
parentf8b89b5775ea3601eea5db5417ebe9a36f9a6a55 (diff)
downloadop-kernel-dev-754c04582a98fa2a24ff1b4c4b88964b114eb526.zip
op-kernel-dev-754c04582a98fa2a24ff1b4c4b88964b114eb526.tar.gz
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>
Diffstat (limited to 'drivers/gpio')
-rw-r--r--drivers/gpio/gpio-aspeed.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpio/gpio-aspeed.c b/drivers/gpio/gpio-aspeed.c
index 4ca436e..bfc5399 100644
--- a/drivers/gpio/gpio-aspeed.c
+++ b/drivers/gpio/gpio-aspeed.c
@@ -834,7 +834,7 @@ static int __init aspeed_gpio_probe(struct platform_device *pdev)
gpio->clk = of_clk_get(pdev->dev.of_node, 0);
if (IS_ERR(gpio->clk)) {
dev_warn(&pdev->dev,
- "No HPLL clock phandle provided, debouncing disabled\n");
+ "Failed to get clock from devicetree, debouncing disabled\n");
gpio->clk = NULL;
}
OpenPOWER on IntegriCloud