diff options
| author | Ye Li <[email protected]> | 2025-09-19 14:58:32 +0800 |
|---|---|---|
| committer | Fabio Estevam <[email protected]> | 2025-09-21 09:07:58 -0300 |
| commit | 9390876cc8235fdb339a32c8b8d1af42ced74393 (patch) | |
| tree | 0a3c0856ccd99428d78631060858709b57620c44 | |
| parent | d33b21b7e261691e8d6613a24cc9b0ececba3b01 (diff) | |
imx: imx8ulp: Call DM post init function for init_r phase
The ELE MU driver needs to be probed at init_r phase as well because
some ELE APIs will be called.
Signed-off-by: Ye Li <[email protected]>
Reviewed-by: Peng Fan <[email protected]>
| -rw-r--r-- | arch/arm/mach-imx/imx8ulp/soc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/mach-imx/imx8ulp/soc.c b/arch/arm/mach-imx/imx8ulp/soc.c index e85cb0dd252..7640f9b84da 100644 --- a/arch/arm/mach-imx/imx8ulp/soc.c +++ b/arch/arm/mach-imx/imx8ulp/soc.c @@ -804,6 +804,7 @@ int imx8ulp_dm_post_init(void) return 0; } EVENT_SPY_SIMPLE(EVT_DM_POST_INIT_F, imx8ulp_dm_post_init); +EVENT_SPY_SIMPLE(EVT_DM_POST_INIT_R, imx8ulp_dm_post_init); #if defined(CONFIG_XPL_BUILD) __weak void __noreturn jump_to_image(struct spl_image_info *spl_image) |
