static void mtk_cg_set_bit_no_setclr(struct clk_hw *hw)
 {
        struct mtk_clk_gate *cg = to_mtk_clk_gate(hw);
-       u32 cgbit = BIT(cg->bit);
 
-       regmap_update_bits(cg->regmap, cg->sta_ofs, cgbit, cgbit);
+       regmap_set_bits(cg->regmap, cg->sta_ofs, BIT(cg->bit));
 }
 
 static void mtk_cg_clr_bit_no_setclr(struct clk_hw *hw)
 {
        struct mtk_clk_gate *cg = to_mtk_clk_gate(hw);
-       u32 cgbit = BIT(cg->bit);
 
-       regmap_update_bits(cg->regmap, cg->sta_ofs, cgbit, 0);
+       regmap_clear_bits(cg->regmap, cg->sta_ofs, BIT(cg->bit));
 }
 
 static int mtk_cg_enable(struct clk_hw *hw)