From 90b0100ad82343fd7cd2bd08e5147959d2da2e2c Mon Sep 17 00:00:00 2001 From: Sam Ravnborg Date: Mon, 3 Jul 2017 21:21:02 +0200 Subject: clk: fix clk_get error handling MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit If there is no OFTREE support of_clk_get_by_name failed with -ENOENT, which caused clk_get to bail out. This had the effect that nothing was printed on the serial console with at91sam9263-ek. There are no error paths that will return -ENODEV as we test for today, so change this to -ENOENT which is in use. This allows us to contine with clk_get_sys() in case of other errors as was the intention of the original fix. Fixes: 90f7eacb ("clk: let clk_get return errors from of_clk_get_by_name") Cc: Uwe Kleine-König Signed-off-by: Sam Ravnborg Signed-off-by: Lucas Stach --- drivers/clk/clkdev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/clk/clkdev.c b/drivers/clk/clkdev.c index 6b16663551..abdc415272 100644 --- a/drivers/clk/clkdev.c +++ b/drivers/clk/clkdev.c @@ -181,7 +181,7 @@ struct clk *clk_get(struct device_d *dev, const char *con_id) if (dev) { clk = of_clk_get_by_name(dev->device_node, con_id); - if (!IS_ERR(clk) || PTR_ERR(clk) != -ENODEV) + if (!IS_ERR(clk) || PTR_ERR(clk) != -ENOENT) return clk; } -- cgit v1.2.3