diff options
author | Angel Pons <th3fanbus@gmail.com> | 2021-01-20 22:36:20 +0100 |
---|---|---|
committer | Angel Pons <th3fanbus@gmail.com> | 2021-01-24 12:06:39 +0000 |
commit | ac1c9bb5cdca24312c669eaaa908b13202e3bb35 (patch) | |
tree | b26cf14dc049b07744c18d8213b2339f6e96c4f8 /src/mainboard/google/jecht | |
parent | d626e554aa6f2a15c2ac4c971d1e5d3a9405b5fc (diff) |
broadwell: Clean up `mainboard_post_raminit`
Make it optional and change its signature.
Change-Id: I4b5f3fb08e8954514ebf39e72c95aa62d66856d7
Signed-off-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/49775
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Michael Niewöhner <foss@mniewoehner.de>
Diffstat (limited to 'src/mainboard/google/jecht')
-rw-r--r-- | src/mainboard/google/jecht/romstage.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/google/jecht/romstage.c b/src/mainboard/google/jecht/romstage.c index 612901123e..58db3cf522 100644 --- a/src/mainboard/google/jecht/romstage.c +++ b/src/mainboard/google/jecht/romstage.c @@ -18,7 +18,7 @@ void mainboard_pre_raminit(struct romstage_params *rp) mainboard_fill_spd_data(&rp->pei_data); } -void mainboard_post_raminit(struct romstage_params *rp) +void mainboard_post_raminit(const int s3resume) { if (CONFIG(CHROMEOS)) init_bootmode_straps(); |