diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2016-10-02 10:09:11 +0200 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2016-10-07 18:06:14 +0200 |
commit | f2fcf22d225e6d8d4a497dba6bda24f98d525735 (patch) | |
tree | 74d85f19988eee410b1b507d7c91bb05600c08f6 /src/mainboard/intel | |
parent | 028200f75f6d8d0f947d68f41ca10fbfe05f9283 (diff) |
src/mainboard: Remove unnecessary whitespace
Change-Id: I35cb7e08d5233aa5a3dbb4631ab2ee4dc9596f98
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/16849
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/mainboard/intel')
-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); |