fix(stm32mp1_clk): set other clocks as always on

AXI, MPU and MCU clocks are always on, put them in the list
in the function clock_is_always_on().

Change-Id: I969a442274d2da6c59636f3293de1c31b4c8e3b1
Signed-off-by: Yann Gautier <yann.gautier@st.com>
This commit is contained in:
Yann Gautier 2020-09-16 16:41:55 +02:00
parent 602ae2f23c
commit bf39318d93
1 changed files with 3 additions and 0 deletions

View File

@ -1091,6 +1091,9 @@ static bool clock_is_always_on(unsigned long id)
case PLL3_P:
case PLL3_Q:
case PLL3_R:
case CK_AXI:
case CK_MPU:
case CK_MCU:
return true;
default:
return false;