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

Commit 42d3c5f6 authored by Gabriel Fernandez's avatar Gabriel Fernandez Committed by Stephen Boyd
Browse files

clk: nxp: clk-lpc32xx: rename clk_gate_is_enabled()



We need to export clk_gate_is_enabled() from clk framework, then
to avoid compilation issue we have to rename clk_gate_is_enabled()
in NXP LPC32xx clock driver.
We changed all gate op with 'lpc32xx_' prefix:
lpc32xx_clk_gate_enable(),
lpc32xx_clk_gate_disable(),
lpc32xx_clk_gate_is_enabled().

Signed-off-by: default avatarGabriel Fernandez <gabriel.fernandez@st.com>
Acked-by: default avatarVladimir Zapolskiy <vz@mleia.com>
Signed-off-by: default avatarStephen Boyd <sboyd@codeaurora.org>
parent 736de651
Loading
Loading
Loading
Loading
+6 −6
Original line number Original line Diff line number Diff line
@@ -885,7 +885,7 @@ static const struct clk_ops clk_usb_i2c_ops = {
	.recalc_rate = clk_usb_i2c_recalc_rate,
	.recalc_rate = clk_usb_i2c_recalc_rate,
};
};


static int clk_gate_enable(struct clk_hw *hw)
static int lpc32xx_clk_gate_enable(struct clk_hw *hw)
{
{
	struct lpc32xx_clk_gate *clk = to_lpc32xx_gate(hw);
	struct lpc32xx_clk_gate *clk = to_lpc32xx_gate(hw);
	u32 mask = BIT(clk->bit_idx);
	u32 mask = BIT(clk->bit_idx);
@@ -894,7 +894,7 @@ static int clk_gate_enable(struct clk_hw *hw)
	return regmap_update_bits(clk_regmap, clk->reg, mask, val);
	return regmap_update_bits(clk_regmap, clk->reg, mask, val);
}
}


static void clk_gate_disable(struct clk_hw *hw)
static void lpc32xx_clk_gate_disable(struct clk_hw *hw)
{
{
	struct lpc32xx_clk_gate *clk = to_lpc32xx_gate(hw);
	struct lpc32xx_clk_gate *clk = to_lpc32xx_gate(hw);
	u32 mask = BIT(clk->bit_idx);
	u32 mask = BIT(clk->bit_idx);
@@ -903,7 +903,7 @@ static void clk_gate_disable(struct clk_hw *hw)
	regmap_update_bits(clk_regmap, clk->reg, mask, val);
	regmap_update_bits(clk_regmap, clk->reg, mask, val);
}
}


static int clk_gate_is_enabled(struct clk_hw *hw)
static int lpc32xx_clk_gate_is_enabled(struct clk_hw *hw)
{
{
	struct lpc32xx_clk_gate *clk = to_lpc32xx_gate(hw);
	struct lpc32xx_clk_gate *clk = to_lpc32xx_gate(hw);
	u32 val;
	u32 val;
@@ -916,9 +916,9 @@ static int clk_gate_is_enabled(struct clk_hw *hw)
}
}


static const struct clk_ops lpc32xx_clk_gate_ops = {
static const struct clk_ops lpc32xx_clk_gate_ops = {
	.enable = clk_gate_enable,
	.enable = lpc32xx_clk_gate_enable,
	.disable = clk_gate_disable,
	.disable = lpc32xx_clk_gate_disable,
	.is_enabled = clk_gate_is_enabled,
	.is_enabled = lpc32xx_clk_gate_is_enabled,
};
};


#define div_mask(width)	((1 << (width)) - 1)
#define div_mask(width)	((1 << (width)) - 1)