Commit 225ff4e8 authored by Peter Ujfalusi's avatar Peter Ujfalusi Committed by Stephen Boyd
Browse files

clk: twl6040: Correct clk_ops



Since the drover only supports prepare callbacks, the use of is_enabled is
not correct, it should be handling is_prepared.

Signed-off-by: default avatarPeter Ujfalusi <peter.ujfalusi@ti.com>
Signed-off-by: default avatarStephen Boyd <sboyd@codeaurora.org>
parent 7752f09c
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -34,7 +34,7 @@ struct twl6040_clk {
	int enabled;
	int enabled;
};
};


static int twl6040_bitclk_is_enabled(struct clk_hw *hw)
static int twl6040_bitclk_is_prepared(struct clk_hw *hw)
{
{
	struct twl6040_clk *twl6040_clk = container_of(hw, struct twl6040_clk,
	struct twl6040_clk *twl6040_clk = container_of(hw, struct twl6040_clk,
						       mcpdm_fclk);
						       mcpdm_fclk);
@@ -66,7 +66,7 @@ static void twl6040_bitclk_unprepare(struct clk_hw *hw)
}
}


static const struct clk_ops twl6040_mcpdm_ops = {
static const struct clk_ops twl6040_mcpdm_ops = {
	.is_enabled = twl6040_bitclk_is_enabled,
	.is_prepared = twl6040_bitclk_is_prepared,
	.prepare = twl6040_bitclk_prepare,
	.prepare = twl6040_bitclk_prepare,
	.unprepare = twl6040_bitclk_unprepare,
	.unprepare = twl6040_bitclk_unprepare,
};
};