From cf13950736b65b944b4449e9ac4904665a0cc61a Mon Sep 17 00:00:00 2001 From: Elyes HAOUAS Date: Fri, 16 Sep 2016 20:32:00 +0200 Subject: src/superio: Add space around operators Change-Id: Ibeab5e7fe0a9005e96934b3b43cfb247ef2e2340 Signed-off-by: Elyes HAOUAS Reviewed-on: https://review.coreboot.org/16615 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi Reviewed-by: Paul Menzel --- src/superio/smsc/lpc47n207/early_serial.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/superio/smsc/lpc47n207') diff --git a/src/superio/smsc/lpc47n207/early_serial.c b/src/superio/smsc/lpc47n207/early_serial.c index 175ea83d21..b8d3960654 100644 --- a/src/superio/smsc/lpc47n207/early_serial.c +++ b/src/superio/smsc/lpc47n207/early_serial.c @@ -57,7 +57,7 @@ void try_enabling_LPC47N207_uart(void) /* enable CONFIG mode */ outb(CONFIG_ENABLE, lpc_port); - reg_value=inb(lpc_port); + reg_value = inb(lpc_port); if (reg_value != CONFIG_ENABLE) { continue; /* There is no LPC device at this address */ } @@ -68,12 +68,12 @@ void try_enabling_LPC47N207_uart(void) * match. */ outb(0x12, lpc_port); - reg_value=inb(lpc_port + 1); + reg_value = inb(lpc_port + 1); if (reg_value != (lpc_port & 0xff)) break; outb(0x13, lpc_port); - reg_value=inb(lpc_port + 1); + reg_value = inb(lpc_port + 1); if (reg_value != (lpc_port >> 8)) break; -- cgit v1.2.3