Commit 8c72a7ab authored by Jacky Bai's avatar Jacky Bai Committed by Manish Pandey
Browse files

plat: imx8m: Fix the macro define error



the 'always_on' member should be initialized from 'on'.
Signed-off-by: default avatarJacky Bai <ping.bai@nxp.com>
Change-Id: I5746ff40075b4fcda2ac7d04a8d7f1269af17e91
parent dd6efc9e
......@@ -32,7 +32,7 @@
.pwr_req = name##_PWR_REQ, \
.pgc_offset = name##_PGC, \
.need_sync = false, \
.always_on = true, \
.always_on = (on), \
}
#define IMX_MIX_DOMAIN(name, on) \
......@@ -42,7 +42,7 @@
.adb400_sync = name##_ADB400_SYNC, \
.adb400_ack = name##_ADB400_ACK, \
.need_sync = true, \
.always_on = true, \
.always_on = (on), \
}
struct imx_pwr_domain {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment