diff options
author | Ye Li | 2024-04-01 09:41:08 +0800 |
---|---|---|
committer | Fabio Estevam | 2024-04-05 09:38:30 -0300 |
commit | 2513bf3f1bd46593c855689550a8f97e0cf7a711 (patch) | |
tree | c2d358ea6cd00f2e6aa89739419b2611cbce2036 /board/phytec | |
parent | 6970f4a6cdaa4dacc3441b2e9b2cdd1254967fee (diff) |
arm: imx9: Correct imx9_probe_mu prototype
Since the event callback imx9_probe_mu is re-defined, update
its prototype.
Signed-off-by: Ye Li <ye.li@nxp.com>
Diffstat (limited to 'board/phytec')
-rw-r--r-- | board/phytec/phycore_imx93/spl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/phytec/phycore_imx93/spl.c b/board/phytec/phycore_imx93/spl.c index 16303fc187a..f03bfee9ffa 100644 --- a/board/phytec/phycore_imx93/spl.c +++ b/board/phytec/phycore_imx93/spl.c @@ -122,7 +122,7 @@ void board_init_f(ulong dummy) preloader_console_init(); - ret = imx9_probe_mu(NULL, NULL); + ret = imx9_probe_mu(); if (ret) { printf("Fail to init ELE API\n"); } else { |