aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/google/auron/romstage.c
diff options
context:
space:
mode:
authorAngel Pons <th3fanbus@gmail.com>2021-01-20 22:29:40 +0100
committerMichael Niewöhner <foss@mniewoehner.de>2021-01-23 13:35:47 +0000
commit3ece16410f12a03e82251ddd19d13ed4706be5c5 (patch)
tree050ad9c8fccba5f0e2d909ee017633170c663fb3 /src/mainboard/google/auron/romstage.c
parent292a7641418bbd653f8097419578793a9c758623 (diff)
mb/google/auron: Drop `variant_romstage_entry`
Replace it with `mainboard_post_raminit`. Change-Id: I94636c775cee6c14317ecff36972e2d267d28c91 Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/49774 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Michael Niewöhner <foss@mniewoehner.de>
Diffstat (limited to 'src/mainboard/google/auron/romstage.c')
-rw-r--r--src/mainboard/google/auron/romstage.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/mainboard/google/auron/romstage.c b/src/mainboard/google/auron/romstage.c
index a10314e4b4..9de58a86d2 100644
--- a/src/mainboard/google/auron/romstage.c
+++ b/src/mainboard/google/auron/romstage.c
@@ -7,10 +7,6 @@
#include <soc/romstage.h>
#include "variant.h"
-__weak void variant_romstage_entry(struct romstage_params *rp)
-{
-}
-
void mainboard_pre_raminit(struct romstage_params *rp)
{
/* Fill out PEI DATA */
@@ -19,8 +15,6 @@ void mainboard_pre_raminit(struct romstage_params *rp)
}
-void mainboard_post_raminit(struct romstage_params *rp)
+__weak void mainboard_post_raminit(struct romstage_params *rp)
{
- /* Do variant-specific init */
- variant_romstage_entry(rp);
}