aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/drivers/clk/clk-twl6040.c
diff options
context:
space:
mode:
authorPeter Ujfalusi <peter.ujfalusi@ti.com>2016-05-30 11:55:09 +0300
committerStephen Boyd <sboyd@codeaurora.org>2016-08-15 12:09:48 -0700
commit225ff4e87ab2ceca4d4db05a5930a8c7ad16d754 (patch)
tree372180f932cf0ff7514217238e9424d71656ed8e /drivers/clk/clk-twl6040.c
parentclk: mvebu: armada-39x: add clk description for supported interfaces (diff)
downloadwireguard-linux-225ff4e87ab2ceca4d4db05a5930a8c7ad16d754.tar.xz
wireguard-linux-225ff4e87ab2ceca4d4db05a5930a8c7ad16d754.zip
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: Peter Ujfalusi <peter.ujfalusi@ti.com> Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Diffstat (limited to 'drivers/clk/clk-twl6040.c')
-rw-r--r--drivers/clk/clk-twl6040.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/clk/clk-twl6040.c b/drivers/clk/clk-twl6040.c
index 697c66757400..e167e0bbaff5 100644
--- a/drivers/clk/clk-twl6040.c
+++ b/drivers/clk/clk-twl6040.c
@@ -34,7 +34,7 @@ struct twl6040_clk {
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,
mcpdm_fclk);
@@ -66,7 +66,7 @@ static void twl6040_bitclk_unprepare(struct clk_hw *hw)
}
static const struct clk_ops twl6040_mcpdm_ops = {
- .is_enabled = twl6040_bitclk_is_enabled,
+ .is_prepared = twl6040_bitclk_is_prepared,
.prepare = twl6040_bitclk_prepare,
.unprepare = twl6040_bitclk_unprepare,
};