mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-27 07:15:20 +00:00
plat: imx8m: Fix the macro define error
the 'always_on' member should be initialized from 'on'. Signed-off-by: Jacky Bai <ping.bai@nxp.com> Change-Id: I5746ff40075b4fcda2ac7d04a8d7f1269af17e91
This commit is contained in:
parent
dd6efc9ea5
commit
8c72a7ab20
1 changed files with 2 additions and 2 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Reference in a new issue