aboutsummaryrefslogtreecommitdiff
path: root/src/include/cpu
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2019-11-28 15:04:17 +0200
committerKyösti Mälkki <kyosti.malkki@gmail.com>2019-11-30 06:00:57 +0000
commitdc34a9d6de6ab21a1f1ed1a6cba142585c092045 (patch)
treeaf36248a9cbadbbd06a5510bd285d416c658441e /src/include/cpu
parentce51d6d9d1ba9d49d0176f821c639aa2384f5582 (diff)
AGESA,binaryPI: Split romstage_main() to BSP and AP parts
BSP and AP have two distinct execution paths for romstage. Change-Id: Id013b165f1345509fe6b74cef2bf8c3b420f84a4 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/37326 Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-by: Michał Żygowski <michal.zygowski@3mdeb.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/include/cpu')
-rw-r--r--src/include/cpu/amd/car.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/cpu/amd/car.h b/src/include/cpu/amd/car.h
index be7b69a942..7e2fccd80f 100644
--- a/src/include/cpu/amd/car.h
+++ b/src/include/cpu/amd/car.h
@@ -3,6 +3,6 @@
#include <arch/cpu.h>
-void *asmlinkage romstage_main(unsigned long bist);
+asmlinkage void romstage_main(unsigned long bist);
#endif