]> git.baikalelectronics.ru Git - uboot.git/commitdiff
arm: Correct cpu_reset function prototype on some platforms
authorTom Rini <trini@konsulko.com>
Thu, 9 Mar 2023 16:22:07 +0000 (11:22 -0500)
committerTom Rini <trini@konsulko.com>
Wed, 22 Mar 2023 19:22:48 +0000 (15:22 -0400)
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>
arch/arm/mach-hpe/gxp/reset.c
arch/arm/mach-mediatek/mt7981/init.c
arch/arm/mach-mediatek/mt7986/init.c
board/armltd/corstone1000/corstone1000.c
board/bosch/acc/acc.c

index ce018a35d94d112877a8db67910c89fd22a45f57..a147bcac18bd6098c3aa44febb939bf990dcae90 100644 (file)
@@ -7,6 +7,7 @@
  * Author: Jean-Marie Verdun <verdun@hpe.com>
  */
 
+#include <cpu_func.h>
 #include <asm/io.h>
 
 #define GXP_CCR        0xc0000000
@@ -16,7 +17,7 @@ void lowlevel_init(void)
 {
 }
 
-void reset_cpu(ulong ignored)
+void reset_cpu(void)
 {
        writel(1, GXP_CCR);
 
index d8b10f035808b29ef8500a365dae0786e7175568..3c921d6ad5cced83997cbe8a3a7ce3ab82c445fc 100644 (file)
@@ -4,6 +4,7 @@
  * Author: Sam Shih <sam.shih@mediatek.com>
  */
 
+#include <cpu_func.h>
 #include <init.h>
 #include <asm/armv8/mmu.h>
 #include <asm/system.h>
@@ -19,7 +20,7 @@ int dram_init(void)
        return 0;
 }
 
-void reset_cpu(ulong addr)
+void reset_cpu(void)
 {
        psci_system_reset();
 }
index fb74b2f34d7b43abc3327421caa014d366857a42..9d0c0cdcd08fd5d201df7142635ae26a49e042c4 100644 (file)
@@ -4,6 +4,7 @@
  * Author: Sam Shih <sam.shih@mediatek.com>
  */
 
+#include <cpu_func.h>
 #include <init.h>
 #include <asm/armv8/mmu.h>
 #include <asm/system.h>
@@ -19,7 +20,7 @@ int dram_init(void)
        return 0;
 }
 
-void reset_cpu(ulong addr)
+void reset_cpu(void)
 {
        psci_system_reset();
 }
index 4f4b96a095c2f163533948f14a0087ff6ffa8f35..6ec8e6144fb435a4b577aed77891c7522474c7bf 100644 (file)
@@ -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)
 {
 }
index 770ca8b711b07cf4849c748501ecb888e5597afb..4a0603d0f3f6d6bb214f1913f6c46c640cf63df4 100644 (file)
@@ -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();