Commit 751d7923 authored by Stephen Boyd's avatar Stephen Boyd

clk: qcom: rpmh: Drop unnecessary semicolons

Some functions end in }; which is just bad style. Remove the extra
semicolon.

Cc: Bjorn Andersson <bjorn.andersson@linaro.org>
Cc: Taniya Das <tdas@codeaurora.org>
Signed-off-by: default avatarStephen Boyd <sboyd@kernel.org>
Link: https://lkml.kernel.org/r/20200309221232.145630-3-sboyd@kernel.org
parent 2cf7a4cb
...@@ -227,7 +227,7 @@ static int clk_rpmh_prepare(struct clk_hw *hw) ...@@ -227,7 +227,7 @@ static int clk_rpmh_prepare(struct clk_hw *hw)
mutex_unlock(&rpmh_clk_lock); mutex_unlock(&rpmh_clk_lock);
return ret; return ret;
}; }
static void clk_rpmh_unprepare(struct clk_hw *hw) static void clk_rpmh_unprepare(struct clk_hw *hw)
{ {
...@@ -293,14 +293,14 @@ static int clk_rpmh_bcm_prepare(struct clk_hw *hw) ...@@ -293,14 +293,14 @@ static int clk_rpmh_bcm_prepare(struct clk_hw *hw)
struct clk_rpmh *c = to_clk_rpmh(hw); struct clk_rpmh *c = to_clk_rpmh(hw);
return clk_rpmh_bcm_send_cmd(c, true); return clk_rpmh_bcm_send_cmd(c, true);
}; }
static void clk_rpmh_bcm_unprepare(struct clk_hw *hw) static void clk_rpmh_bcm_unprepare(struct clk_hw *hw)
{ {
struct clk_rpmh *c = to_clk_rpmh(hw); struct clk_rpmh *c = to_clk_rpmh(hw);
clk_rpmh_bcm_send_cmd(c, false); clk_rpmh_bcm_send_cmd(c, false);
}; }
static int clk_rpmh_bcm_set_rate(struct clk_hw *hw, unsigned long rate, static int clk_rpmh_bcm_set_rate(struct clk_hw *hw, unsigned long rate,
unsigned long parent_rate) unsigned long parent_rate)
...@@ -316,7 +316,7 @@ static int clk_rpmh_bcm_set_rate(struct clk_hw *hw, unsigned long rate, ...@@ -316,7 +316,7 @@ static int clk_rpmh_bcm_set_rate(struct clk_hw *hw, unsigned long rate,
clk_rpmh_bcm_send_cmd(c, true); clk_rpmh_bcm_send_cmd(c, true);
return 0; return 0;
}; }
static long clk_rpmh_round_rate(struct clk_hw *hw, unsigned long rate, static long clk_rpmh_round_rate(struct clk_hw *hw, unsigned long rate,
unsigned long *parent_rate) unsigned long *parent_rate)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment