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>
This commit is contained in:
Elyes HAOUAS
2016-10-02 10:09:11 +02:00
committed by Martin Roth
parent 028200f75f
commit f2fcf22d22
15 changed files with 40 additions and 34 deletions

View File

@@ -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);