aboutsummaryrefslogtreecommitdiff
path: root/src/lib/spd_bin.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/spd_bin.c')
-rw-r--r--src/lib/spd_bin.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/lib/spd_bin.c b/src/lib/spd_bin.c
index 343d48a101..4108839858 100644
--- a/src/lib/spd_bin.c
+++ b/src/lib/spd_bin.c
@@ -117,7 +117,8 @@ int get_spd_cbfs_rdev(struct region_device *spd_rdev, u8 spd_index)
uint32_t cbfs_type = CBFS_TYPE_SPD;
- cbfs_boot_locate(&fh, "spd.bin", &cbfs_type);
+ if (cbfs_boot_locate(&fh, "spd.bin", &cbfs_type) < 0)
+ return -1;
cbfs_file_data(spd_rdev, &fh);
return rdev_chain(spd_rdev, spd_rdev, spd_index * CONFIG_DIMM_SPD_SIZE,
CONFIG_DIMM_SPD_SIZE);
@@ -152,7 +153,7 @@ static void get_spd(u8 *spd, u8 addr)
void get_spd_smbus(struct spd_block *blk)
{
- u8 i, j;
+ u8 i;
unsigned char *spd_data_ptr = car_get_var_ptr(&spd_data);
for (i = 0 ; i < CONFIG_DIMM_MAX; i++) {
@@ -161,8 +162,5 @@ void get_spd_smbus(struct spd_block *blk)
blk->spd_array[i] = spd_data_ptr + i * CONFIG_DIMM_SPD_SIZE;
}
- for (j = i; j < CONFIG_DIMM_MAX; j++)
- blk->spd_array[j] = NULL;
-
update_spd_len(blk);
}