src/superio: Add space around operators
Change-Id: Ibeab5e7fe0a9005e96934b3b43cfb247ef2e2340 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/16615 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi <pgeorgi@google.com> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
This commit is contained in:
committed by
Patrick Georgi
parent
a0fed37044
commit
cf13950736
@ -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;
|
||||
|
||||
|
@ -236,8 +236,8 @@ static void enable_dev(struct device *dev)
|
||||
|
||||
/* TODO: Error handling? */
|
||||
|
||||
printk(BIOS_INFO, "Found SMSC Super I/O (ID=0x%02x, "
|
||||
"rev=0x%02x)\n", superio_id, superio_rev);
|
||||
printk(BIOS_INFO, "Found SMSC Super I/O (ID = 0x%02x, "
|
||||
"rev = 0x%02x)\n", superio_id, superio_rev);
|
||||
first_time = 0;
|
||||
|
||||
if (superio_id == LPC47M172) {
|
||||
|
Reference in New Issue
Block a user