9
0
Fork 0

clk: fix misleading indenting

Signed-off-by: Lucas Stach <dev@lynxeye.de>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Lucas Stach 2016-07-06 20:44:39 +02:00 committed by Sascha Hauer
parent 81a54afd22
commit 5455354846
1 changed files with 2 additions and 2 deletions

View File

@ -181,8 +181,8 @@ 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))
return clk;
if (!IS_ERR(clk))
return clk;
}
return clk_get_sys(dev_id, con_id);