diff options
author | Angel Pons <th3fanbus@gmail.com> | 2021-01-20 23:25:59 +0100 |
---|---|---|
committer | Angel Pons <th3fanbus@gmail.com> | 2021-01-25 23:43:40 +0000 |
commit | f9acd37d7f15290240d4fb9e365a7b79af57b925 (patch) | |
tree | a151390866abefd74f9323fb5d11d18cf7063b75 /src/mainboard/google/auron/spd.c | |
parent | 75f6ab35ffefec72e343175686d7ef45b30b0939 (diff) |
mb/google/auron: Use `get_gpios` function
Change-Id: I91424a45ae67186987630b7686102f467f57e7ee
Signed-off-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/49779
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Michael Niewöhner <foss@mniewoehner.de>
Diffstat (limited to 'src/mainboard/google/auron/spd.c')
-rw-r--r-- | src/mainboard/google/auron/spd.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mainboard/google/auron/spd.c b/src/mainboard/google/auron/spd.c index 20d7498a7b..e5c3dbd955 100644 --- a/src/mainboard/google/auron/spd.c +++ b/src/mainboard/google/auron/spd.c @@ -74,6 +74,8 @@ void fill_spd_for_index(uint8_t spd[], unsigned int spd_index) size_t spd_file_len; uint8_t *spd_file = cbfs_map("spd.bin", &spd_file_len); + printk(BIOS_DEBUG, "SPD index %d\n", spd_index); + if (!spd_file) die("SPD data not found."); |