diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2022-01-29 09:29:20 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-01-31 13:56:59 +0000 |
commit | a04666110a27de1c0577a83d5b1f5bec232790f1 (patch) | |
tree | dff0d4337478e39bf241fd14ba7fedfc4473a59a | |
parent | b196834b620008651b6dcf1dbf2d39aff7514b33 (diff) |
superio/smsc/lpc47n207/early_serial.c: Fix indent for 'if' statement
Change-Id: I0342e25747458239c1ad8c0f70f91f700ae8325d
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/61473
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
-rw-r--r-- | src/superio/smsc/lpc47n207/early_serial.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/superio/smsc/lpc47n207/early_serial.c b/src/superio/smsc/lpc47n207/early_serial.c index 36f3b36cde..41d7860c1f 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) outb(0x12, lpc_port); reg_value = inb(lpc_port + 1); if (reg_value != (lpc_port & 0xff)) - break; + break; outb(0x13, lpc_port); reg_value = inb(lpc_port + 1); |