summaryrefslogtreecommitdiff
path: root/src/northbridge/intel/i945
diff options
context:
space:
mode:
authorPaul Menzel <pmenzel@molgen.mpg.de>2020-03-14 11:50:34 +0100
committerPatrick Georgi <pgeorgi@google.com>2020-03-15 13:01:09 +0000
commitd789b658f768ccb94641527046ddb5728d980b3f (patch)
tree6cfc5423cad771e4a92e303f7fdb84a4b902f93e /src/northbridge/intel/i945
parent842dd3328d250cc2e42032b4f7b875c2061af360 (diff)
downloadcoreboot-d789b658f768ccb94641527046ddb5728d980b3f.tar.xz
nb/intel/i945/raminit: Use boolean type for helper variables
Change-Id: I465a68f281534cd9fc5a7bde02c32d1353cfdaed Signed-off-by: Paul Menzel <pmenzel@molgen.mpg.de> Reviewed-on: https://review.coreboot.org/c/coreboot/+/39536 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/northbridge/intel/i945')
-rw-r--r--src/northbridge/intel/i945/raminit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/northbridge/intel/i945/raminit.c b/src/northbridge/intel/i945/raminit.c
index 2489aa7cab..c50b1d850e 100644
--- a/src/northbridge/intel/i945/raminit.c
+++ b/src/northbridge/intel/i945/raminit.c
@@ -2027,7 +2027,7 @@ static void sdram_pre_jedec_initialization(void)
static void sdram_enhanced_addressing_mode(struct sys_info *sysinfo)
{
u32 chan0 = 0, chan1 = 0;
- int chan0_dualsided, chan1_dualsided, chan0_populated, chan1_populated;
+ bool chan0_dualsided, chan1_dualsided, chan0_populated, chan1_populated;
chan0_populated = (sysinfo->dimm[0] != SYSINFO_DIMM_NOT_POPULATED ||
sysinfo->dimm[1] != SYSINFO_DIMM_NOT_POPULATED);