diff options
| author | Ye Li <[email protected]> | 2024-04-01 09:41:09 +0800 |
|---|---|---|
| committer | Fabio Estevam <[email protected]> | 2024-04-05 09:38:46 -0300 |
| commit | ffb0a930ce7e234d4d9136a5695a48b6e3d2a7c6 (patch) | |
| tree | 7dade815322fc7b880651e7fa77519ad76e85a57 | |
| parent | 2513bf3f1bd46593c855689550a8f97e0cf7a711 (diff) | |
arm: imx9: Call imx9_probe_mu for DM post in board_r
This event callback imx9_probe_mu needs to be called in board_r
as well, because many ELE APIs depending on this MU probed
Signed-off-by: Ye Li <[email protected]>
| -rw-r--r-- | arch/arm/mach-imx/imx9/soc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/mach-imx/imx9/soc.c b/arch/arm/mach-imx/imx9/soc.c index e2794d6218b..2117489f232 100644 --- a/arch/arm/mach-imx/imx9/soc.c +++ b/arch/arm/mach-imx/imx9/soc.c @@ -622,6 +622,7 @@ int imx9_probe_mu(void) return 0; } EVENT_SPY_SIMPLE(EVT_DM_POST_INIT_F, imx9_probe_mu); +EVENT_SPY_SIMPLE(EVT_DM_POST_INIT_R, imx9_probe_mu); int timer_init(void) { |
