Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1706056
| From | Andrew Jeffery <andrew@aj.id.au> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [RESEND PATCH 2/2] gpio: aspeed: Remove reference to clock name in debounce warning message |
| Date | 2017-08-08 08:20 +0200 |
| Message-ID | <uc61Z-3Rd-19@gated-at.bofh.it> (permalink) |
| References | <uc61X-3Rd-5@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
HPLL was in fact not the clock we need. Remove description of which
clock to avoid any further error.
Signed-off-by: Andrew Jeffery <andrew@aj.id.au>
---
drivers/gpio/gpio-aspeed.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpio/gpio-aspeed.c b/drivers/gpio/gpio-aspeed.c
index 4ca436e66bdb..bfc53995064a 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;
}
--
2.11.0
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[RESEND PATCH 0/2] Fix clock name in Aspeed GPIO bindings and driver Andrew Jeffery <andrew@aj.id.au> - 2017-08-08 08:20 +0200
[RESEND PATCH 2/2] gpio: aspeed: Remove reference to clock name in debounce warning message Andrew Jeffery <andrew@aj.id.au> - 2017-08-08 08:20 +0200
Re: [RESEND PATCH 2/2] gpio: aspeed: Remove reference to clock name in debounce warning message Joel Stanley <joel@jms.id.au> - 2017-08-11 05:10 +0200
csiph-web