nb/intel/haswell/raminit: Die if cbmem_add() fails
Maybe we could go on, but cbmem_add() failing is a very bad sign. Should fix coverity CID 1376384 (Null pointer dereferences (NULL_RETURNS)). Change-Id: I330cee6db3540c6a9c408d56da43105de5d075f7 Found-by: Coverity Scan #1376384 Signed-off-by: Nico Huber <nico.huber@secunet.com> Reviewed-on: https://review.coreboot.org/20280 Reviewed-by: Patrick Georgi <pgeorgi@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
This commit is contained in:
parent
aa9643e850
commit
acac02d5d2
|
@ -187,6 +187,8 @@ void setup_sdram_meminfo(struct pei_data *pei_data)
|
|||
int dimm_cnt = 0;
|
||||
|
||||
mem_info = cbmem_add(CBMEM_ID_MEMINFO, sizeof(struct memory_info));
|
||||
if (!mem_info)
|
||||
die("Failed to add memory info to CBMEM.\n");
|
||||
memset(mem_info, 0, sizeof(struct memory_info));
|
||||
|
||||
addr_decoder_common = MCHBAR32(0x5000);
|
||||
|
|
Loading…
Reference in New Issue