mirror of
https://github.com/torvalds/linux.git
synced 2026-05-12 16:18:45 +02:00
Merge tag 'spacemit-clk-fixes-for-7.0-1' of ssh://github.com/spacemit-com/linux into clk-fixes
Pull a SpacemiT clk fix from Yixun Lan: - Fix inverted condition check * tag 'spacemit-clk-fixes-for-7.0-1' of ssh://github.com/spacemit-com/linux: clk: spacemit: ccu_mix: fix inverted condition in ccu_mix_trigger_fc()
This commit is contained in:
commit
ce56ffbea7
|
|
@ -73,7 +73,7 @@ static int ccu_mix_trigger_fc(struct clk_hw *hw)
|
|||
struct ccu_common *common = hw_to_ccu_common(hw);
|
||||
unsigned int val;
|
||||
|
||||
if (common->reg_fc)
|
||||
if (!common->reg_fc)
|
||||
return 0;
|
||||
|
||||
ccu_update(common, fc, common->mask_fc, common->mask_fc);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user