Skip to content

Commit a8dfca1

Browse files
MrVanShawn Guo
authored andcommitted
firmware: imx: scu-pd: fix cm40 power domain
The postfix needs to be false. Alought compiler use 0 for postfix now, and take start_from as 0, it is better we add explicit false to postfix. Fixes: 705dcca("firmware: imx: scu-pd: add power domain for I2C and INTMUX in CM40 SS") Signed-off-by: Peng Fan <[email protected]> Reviewed-by: Dong Aisheng <[email protected]> Signed-off-by: Shawn Guo <[email protected]>
1 parent f42f3e7 commit a8dfca1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/firmware/imx/scu-pd.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,8 +167,8 @@ static const struct imx_sc_pd_range imx8qxp_scu_pd_ranges[] = {
167167
{ "dc0-pll", IMX_SC_R_DC_0_PLL_0, 2, true, 0 },
168168

169169
/* CM40 SS */
170-
{ "cm40_i2c", IMX_SC_R_M4_0_I2C, 1, 0 },
171-
{ "cm40_intmux", IMX_SC_R_M4_0_INTMUX, 1, 0 },
170+
{ "cm40_i2c", IMX_SC_R_M4_0_I2C, 1, false, 0 },
171+
{ "cm40_intmux", IMX_SC_R_M4_0_INTMUX, 1, false, 0 },
172172
};
173173

174174
static const struct imx_sc_pd_soc imx8qxp_scu_pd = {

0 commit comments

Comments
 (0)