aboutsummaryrefslogtreecommitdiff
path: root/src/northbridge/intel/e7505/debug.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/northbridge/intel/e7505/debug.c')
-rw-r--r--src/northbridge/intel/e7505/debug.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/northbridge/intel/e7505/debug.c b/src/northbridge/intel/e7505/debug.c
index c085c874c9..f3a27e2b73 100644
--- a/src/northbridge/intel/e7505/debug.c
+++ b/src/northbridge/intel/e7505/debug.c
@@ -148,7 +148,8 @@ void dump_smbus_registers(void)
printk(BIOS_DEBUG, "\n");
for (device = 1; device < 0x80; device++) {
int j;
- if ( spd_read_byte(device, 0) < 0 ) continue;
+ if (spd_read_byte(device, 0) < 0)
+ continue;
printk(BIOS_DEBUG, "smbus: %02x", device);
for (j = 0; j < 256; j++) {
int status;