diff options
author | Geert Uytterhoeven <[email protected]> | 2019-12-06 14:34:14 +0100 |
---|---|---|
committer | Stephen Boyd <[email protected]> | 2020-02-12 15:39:40 -0800 |
commit | be545c79b28917caa0cee231f376be2a2e5c9d0e (patch) | |
tree | 9024ca079b63f40ec5d3df099db04a91c53edf17 | |
parent | bb6d3fb354c5ee8d6bde2d576eb7220ea09862b9 (diff) |
clk: Fix continuation of of_clk_detect_critical()
The second line of the of_clk_detect_critical() function signature is
not indented according to coding style.
Signed-off-by: Geert Uytterhoeven <[email protected]>
Link: https://lkml.kernel.org/r/[email protected]
Acked-by: Lee Jones <[email protected]>
Signed-off-by: Stephen Boyd <[email protected]>
-rw-r--r-- | drivers/clk/clk.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/clk/clk.c b/drivers/clk/clk.c index f0f2b599fd7e..e42145cd996a 100644 --- a/drivers/clk/clk.c +++ b/drivers/clk/clk.c @@ -4865,8 +4865,8 @@ static int parent_ready(struct device_node *np) * * Return: error code or zero on success */ -int of_clk_detect_critical(struct device_node *np, - int index, unsigned long *flags) +int of_clk_detect_critical(struct device_node *np, int index, + unsigned long *flags) { struct property *prop; const __be32 *cur; |