From: Peng Fan <peng.fan@nxp.com>
Replace if/else blocks using regmap_set_bits()/regmap_clear_bits() with
the simpler regmap_assign_bits() call.
Signed-off-by: Peng Fan <peng.fan@nxp.com>
---
drivers/clk/tenstorrent/atlantis-prcm.c | 11 +++--------
1 file changed, 3 insertions(+), 8 deletions(-)
diff --git a/drivers/clk/tenstorrent/atlantis-prcm.c b/drivers/clk/tenstorrent/atlantis-prcm.c
index 6d4386eeb7dae..854b9c48816f2 100644
--- a/drivers/clk/tenstorrent/atlantis-prcm.c
+++ b/drivers/clk/tenstorrent/atlantis-prcm.c
@@ -205,14 +205,9 @@ static int atlantis_clk_gate_endisable(struct clk_hw *hw, int enable)
{
struct atlantis_clk_gate *gate = hw_to_atlantis_clk_gate(hw);
- if (enable)
- return regmap_set_bits(gate->common.regmap,
- gate->config.reg_offset,
- gate->config.enable);
- else
- return regmap_clear_bits(gate->common.regmap,
- gate->config.reg_offset,
- gate->config.enable);
+ return regmap_assign_bits(gate->common.regmap,
+ gate->config.reg_offset,
+ gate->config.enable, enable);
}
static int atlantis_clk_gate_enable(struct clk_hw *hw)
--
2.50.1