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>
This commit is contained in:
Ye Li 2024-04-01 09:41:08 +08:00 committed by Fabio Estevam
parent 6970f4a6cd
commit 2513bf3f1b
4 changed files with 4 additions and 4 deletions

View File

@ -8,6 +8,6 @@
#include <event.h>
int imx9_probe_mu(void *ctx, struct event *event);
int imx9_probe_mu(void);
#endif

View File

@ -116,7 +116,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 Sentinel API\n");
} else {

View File

@ -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 {

View File

@ -121,7 +121,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 {