From afec0716eeeb28677c223b69407269ebbdc0d2cb Mon Sep 17 00:00:00 2001 From: Aaron Durbin Date: Wed, 28 Aug 2019 07:34:51 -0600 Subject: arch/x86: remove weak car_stage_entry() symbol MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Many (if not all) platforms have moved to using consistent boot flow constructs where a weak car_stage_entry() is no longer necessary to avoid the complexity of handling the numerous and different boot flow combinations. The weak symbol is just causing issues so remove it. Change-Id: I7e7897c0609aac8eef96a08bb789374b2403956d Signed-off-by: Aaron Durbin Reviewed-on: https://review.coreboot.org/c/coreboot/+/35135 Reviewed-by: Kyösti Mälkki Reviewed-by: Subrata Banik Tested-by: build bot (Jenkins) --- src/arch/x86/assembly_entry.S | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src') diff --git a/src/arch/x86/assembly_entry.S b/src/arch/x86/assembly_entry.S index 4ead9ea769..0ac59edb4a 100644 --- a/src/arch/x86/assembly_entry.S +++ b/src/arch/x86/assembly_entry.S @@ -60,9 +60,7 @@ debug_spinloop: #endif call car_stage_entry -/* This is here for linking purposes. */ -.weak car_stage_entry -car_stage_entry: + /* Expect to never return. */ 1: jmp 1b -- cgit v1.2.3