aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/clk/renesas/clk-mstp.c
diff options
context:
space:
mode:
authorGeert Uytterhoeven <geert+renesas@glider.be>2017-01-23 10:48:21 +0100
committerGeert Uytterhoeven <geert+renesas@glider.be>2017-01-27 08:58:17 +0100
commit1ce87dd2f0bb8dee1378ec3bff94c4454feaaa30 (patch)
treeb7f7fcaac30ddea1ac75837f3c82c5474af4fe44 /drivers/clk/renesas/clk-mstp.c
parentclk: renesas: mstp: Make INTC-SYS a critical clock (diff)
downloadlinux-dev-1ce87dd2f0bb8dee1378ec3bff94c4454feaaa30.tar.xz
linux-dev-1ce87dd2f0bb8dee1378ec3bff94c4454feaaa30.zip
clk: renesas: mstp: Reformat cpg_mstp_clock_register() for git diff
As the function header of cpg_mstp_clock_register() is split in an unusual way, "git diff" gets confused when changes to the body of the function are made, and attributes them to the wrong function. Reformat the function header to fix this. Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be> Acked-by: Stephen Boyd <sboyd@codeaurora.org>
Diffstat (limited to 'drivers/clk/renesas/clk-mstp.c')
-rw-r--r--drivers/clk/renesas/clk-mstp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/clk/renesas/clk-mstp.c b/drivers/clk/renesas/clk-mstp.c
index c0319b8acf35..93506251f7ed 100644
--- a/drivers/clk/renesas/clk-mstp.c
+++ b/drivers/clk/renesas/clk-mstp.c
@@ -127,9 +127,9 @@ static const struct clk_ops cpg_mstp_clock_ops = {
.is_enabled = cpg_mstp_clock_is_enabled,
};
-static struct clk * __init
-cpg_mstp_clock_register(const char *name, const char *parent_name,
- unsigned int index, struct mstp_clock_group *group)
+static struct clk * __init cpg_mstp_clock_register(const char *name,
+ const char *parent_name, unsigned int index,
+ struct mstp_clock_group *group)
{
struct clk_init_data init;
struct mstp_clock *clock;