Elyes Haouas has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/83902?usp=email )
Change subject: device/dram/ddr3: Use boolean for spd_dimm_is_registered_ddr3() ......................................................................
device/dram/ddr3: Use boolean for spd_dimm_is_registered_ddr3()
Change-Id: I8c9d66777b69b35f4df147c141fe94694f57be31 Signed-off-by: Elyes Haouas ehaouas@noos.fr --- M src/device/dram/ddr3.c M src/include/device/dram/ddr3.h 2 files changed, 4 insertions(+), 4 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/02/83902/1
diff --git a/src/device/dram/ddr3.c b/src/device/dram/ddr3.c index 09a4e7f..30dbe83 100644 --- a/src/device/dram/ddr3.c +++ b/src/device/dram/ddr3.c @@ -27,13 +27,13 @@ * * @param type DIMM type. This is byte[3] of the SPD. */ -int spd_dimm_is_registered_ddr3(enum spd_dimm_type_ddr3 type) +bool spd_dimm_is_registered_ddr3(enum spd_dimm_type_ddr3 type) { if ((type == SPD_DDR3_DIMM_TYPE_RDIMM) | (type == SPD_DDR3_DIMM_TYPE_MINI_RDIMM) | (type == SPD_DDR3_DIMM_TYPE_72B_SO_RDIMM)) - return 1; + return true;
- return 0; + return false; }
/** diff --git a/src/include/device/dram/ddr3.h b/src/include/device/dram/ddr3.h index c4fd253..2f8766b 100644 --- a/src/include/device/dram/ddr3.h +++ b/src/include/device/dram/ddr3.h @@ -158,7 +158,7 @@ u16 spd_ddr3_calc_crc(u8 *spd, int len); u16 spd_ddr3_calc_unique_crc(u8 *spd, int len); int spd_decode_ddr3(struct dimm_attr_ddr3_st *dimm, spd_ddr3_raw_data spd_data); -int spd_dimm_is_registered_ddr3(enum spd_dimm_type_ddr3 type); +bool spd_dimm_is_registered_ddr3(enum spd_dimm_type_ddr3 type); void dram_print_spd_ddr3(const struct dimm_attr_ddr3_st *dimm); int spd_xmp_decode_ddr3(struct dimm_attr_ddr3_st *dimm, spd_ddr3_raw_data spd,