diff options
-rw-r--r-- | drivers/clk/shmobile/clk-mstp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/shmobile/clk-mstp.c b/drivers/clk/shmobile/clk-mstp.c index 1f6324e29a80..2d2fe773ac81 100644 --- a/drivers/clk/shmobile/clk-mstp.c +++ b/drivers/clk/shmobile/clk-mstp.c | |||
@@ -112,7 +112,7 @@ static int cpg_mstp_clock_is_enabled(struct clk_hw *hw) | |||
112 | else | 112 | else |
113 | value = clk_readl(group->smstpcr); | 113 | value = clk_readl(group->smstpcr); |
114 | 114 | ||
115 | return !!(value & BIT(clock->bit_index)); | 115 | return !(value & BIT(clock->bit_index)); |
116 | } | 116 | } |
117 | 117 | ||
118 | static const struct clk_ops cpg_mstp_clock_ops = { | 118 | static const struct clk_ops cpg_mstp_clock_ops = { |