mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-16 09:54:35 +00:00
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:
parent
6970f4a6cd
commit
2513bf3f1b
4 changed files with 4 additions and 4 deletions
|
@ -8,6 +8,6 @@
|
|||
|
||||
#include <event.h>
|
||||
|
||||
int imx9_probe_mu(void *ctx, struct event *event);
|
||||
int imx9_probe_mu(void);
|
||||
|
||||
#endif
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Add table
Reference in a new issue