diff options
author | Tom Rini | 2023-03-09 11:22:07 -0500 |
---|---|---|
committer | Tom Rini | 2023-03-22 15:22:48 -0400 |
commit | f5131e80fc5b6d858fe07f0691d82e8fbe2fd25d (patch) | |
tree | 2c8f0500d7c8210f8644c6a2d9e5fea376dfd164 /board | |
parent | d9ab69d7366a0d005b7cf4d65080f8309be3a9d6 (diff) |
arm: Correct cpu_reset function prototype on some platforms
Some platforms were not including <cpu_func.h> which sets the prototype
for reset_cpu, and in turn had it set wrong. Correct these cases.
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'board')
-rw-r--r-- | board/armltd/corstone1000/corstone1000.c | 3 | ||||
-rw-r--r-- | board/bosch/acc/acc.c | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/board/armltd/corstone1000/corstone1000.c b/board/armltd/corstone1000/corstone1000.c index 4f4b96a095c..6ec8e6144fb 100644 --- a/board/armltd/corstone1000/corstone1000.c +++ b/board/armltd/corstone1000/corstone1000.c @@ -6,6 +6,7 @@ */ #include <common.h> +#include <cpu_func.h> #include <dm.h> #include <netdev.h> #include <dm/platform_data/serial_pl01x.h> @@ -86,6 +87,6 @@ int dram_init_banksize(void) return 0; } -void reset_cpu(ulong addr) +void reset_cpu(void) { } diff --git a/board/bosch/acc/acc.c b/board/bosch/acc/acc.c index 770ca8b711b..4a0603d0f3f 100644 --- a/board/bosch/acc/acc.c +++ b/board/bosch/acc/acc.c @@ -6,6 +6,7 @@ */ #include <common.h> +#include <cpu_func.h> #include <bootstage.h> #include <dm.h> #include <dm/platform_data/serial_mxc.h> @@ -720,7 +721,7 @@ int board_fit_config_name_match(const char *name) return -1; } -void reset_cpu(ulong addr) +void reset_cpu(void) { puts("Hanging CPU for watchdog reset!\n"); hang(); |