summaryrefslogtreecommitdiff
path: root/src/arch/mips/include
diff options
context:
space:
mode:
authorArthur Heymans <arthur@aheymans.xyz>2019-10-28 23:26:13 +0100
committerPatrick Georgi <pgeorgi@google.com>2019-11-04 11:40:25 +0000
commita1b700ff74981ecb84e47e132a60d7f0d5312676 (patch)
tree97af20e80157b51857e0fa97ec2834b623ed9c84 /src/arch/mips/include
parent879c9fc4210fa508fdc7e23e6a53709d5751d513 (diff)
downloadcoreboot-a1b700ff74981ecb84e47e132a60d7f0d5312676.tar.xz
arch/mips: Pass cbmem_top to ramstage via calling argument
This allows to use a common cbmem_top implementation. Change-Id: I85efe3899607854c36d0ec594868f690eb724a7f Signed-off-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-on: https://review.coreboot.org/c/coreboot/+/36421 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Nico Huber <nico.h@gmx.de>
Diffstat (limited to 'src/arch/mips/include')
-rw-r--r--src/arch/mips/include/arch/stages.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/arch/mips/include/arch/stages.h b/src/arch/mips/include/arch/stages.h
index 63306bd783..3da02da1ca 100644
--- a/src/arch/mips/include/arch/stages.h
+++ b/src/arch/mips/include/arch/stages.h
@@ -14,8 +14,9 @@
#ifndef __MIPS_ARCH_STAGES_H
#define __MIPS_ARCH_STAGES_H
+#include <stdint.h>
#include <main_decl.h>
-void stage_entry(void);
+void stage_entry(uintptr_t stage_arg);
#endif /* __MIPS_ARCH_STAGES_H */