diff options
Diffstat (limited to 'src/mainboard/intel/eagleheights/debug.c')
-rw-r--r-- | src/mainboard/intel/eagleheights/debug.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainboard/intel/eagleheights/debug.c b/src/mainboard/intel/eagleheights/debug.c index c380795edf..dd97837c3f 100644 --- a/src/mainboard/intel/eagleheights/debug.c +++ b/src/mainboard/intel/eagleheights/debug.c @@ -150,7 +150,7 @@ static inline void dump_spd_registers(void) int i; printk(BIOS_DEBUG, "\ndimm %02x", device); - for(i = 0; (i < 256) ; i++) { + for(i = 0; (i < 256); i++) { if ((i % 16) == 0) printk(BIOS_DEBUG, "\n%02x: ", i); status = smbus_read_byte(device, i); @@ -174,7 +174,7 @@ static inline void dump_ipmi_registers(void) int i; printk(BIOS_DEBUG, "\nipmi %02x", device); - for(i = 0; (i < 8) ; i++) { + for(i = 0; (i < 8); i++) { status = smbus_read_byte(device, 2); if (status < 0) { printk(BIOS_DEBUG, "bad device: %d\n", -status); |