Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9108620d authored by Bhumika Goyal's avatar Bhumika Goyal Committed by Stephen Boyd
Browse files

clk: hisilicon: make clk_ops const



Make these const as they are only stored in the const field of a
clk_init_data structure.

Signed-off-by: default avatarBhumika Goyal <bhumirks@gmail.com>
Signed-off-by: default avatarStephen Boyd <sboyd@codeaurora.org>
parent ed3f2d12
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -415,7 +415,7 @@ static int mmc_clk_set_rate(struct clk_hw *hw, unsigned long rate,
	return mmc_clk_set_timing(hw, rate);
}

static struct clk_ops clk_mmc_ops = {
static const struct clk_ops clk_mmc_ops = {
	.prepare = mmc_clk_prepare,
	.determine_rate = mmc_clk_determine_rate,
	.set_rate = mmc_clk_set_rate,
+2 −2
Original line number Diff line number Diff line
@@ -208,7 +208,7 @@ static void clk_ether_unprepare(struct clk_hw *hw)
	writel_relaxed(val, clk->ctrl_reg);
}

static struct clk_ops clk_ether_ops = {
static const struct clk_ops clk_ether_ops = {
	.prepare = clk_ether_prepare,
	.unprepare = clk_ether_unprepare,
};
@@ -247,7 +247,7 @@ static void clk_complex_disable(struct clk_hw *hw)
	writel_relaxed(val, clk->phy_reg);
}

static struct clk_ops clk_complex_ops = {
static const struct clk_ops clk_complex_ops = {
	.enable = clk_complex_enable,
	.disable = clk_complex_disable,
};
+1 −1
Original line number Diff line number Diff line
@@ -88,7 +88,7 @@ static int clkgate_separated_is_enabled(struct clk_hw *hw)
	return reg ? 1 : 0;
}

static struct clk_ops clkgate_separated_ops = {
static const struct clk_ops clkgate_separated_ops = {
	.enable		= clkgate_separated_enable,
	.disable	= clkgate_separated_disable,
	.is_enabled	= clkgate_separated_is_enabled,