summaryrefslogtreecommitdiffstats
path: root/arch/arm/boards/dss11
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2019-03-14 19:15:37 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2019-03-18 10:10:40 +0100
commite52a250d23818045d9c8e4d3e3dfec9f74c781ea (patch)
tree052a53a281cd0ac4b24b62b511307c019c6f93d4 /arch/arm/boards/dss11
parentd3945aae042523dbe233fa044b7857a4fb774821 (diff)
downloadbarebox-e52a250d23818045d9c8e4d3e3dfec9f74c781ea.tar.gz
barebox-e52a250d23818045d9c8e4d3e3dfec9f74c781ea.tar.xz
ARM: boards: Harmonize barebox_arm_reset_vector() prototype
barebox_arm_reset_vector() is a global function but we never provided a prototype anywhere. The prototypes differ for the different boards, so to provide a common prototype we must harmonize them. void barebox_arm_reset_vector(uint32_t r0, uint32_t r1, uint32_t r2) Should be suitable for all boards. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/arm/boards/dss11')
-rw-r--r--arch/arm/boards/dss11/lowlevel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/boards/dss11/lowlevel.c b/arch/arm/boards/dss11/lowlevel.c
index b16ef31bf0..25352672d7 100644
--- a/arch/arm/boards/dss11/lowlevel.c
+++ b/arch/arm/boards/dss11/lowlevel.c
@@ -14,7 +14,7 @@
#include <mach/at91sam9260.h>
#include <mach/hardware.h>
-void __naked __bare_init barebox_arm_reset_vector(void)
+void __naked __bare_init barebox_arm_reset_vector(uint32_t r0, uint32_t r1, uint32_t r2)
{
arm_cpu_lowlevel_init();