aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/ocp
diff options
context:
space:
mode:
authorPaul Menzel <pmenzel@molgen.mpg.de>2020-03-27 08:38:51 +0100
committerPatrick Georgi <pgeorgi@google.com>2020-04-14 10:04:35 +0000
commit0fdd9fd2aaaa00e0dd5bd353bb7324a1380d6ca5 (patch)
treeedf58ca877e80b78d0a71a20ca55185e6bfac3be /src/mainboard/ocp
parent895c77f361e9d44849cc00eac5a094371fecfc8c (diff)
mb/ocp/tiogapass: Add missing spaces around operators
Change-Id: I8930e96e5f2c45b8658dc4dfe1ab57d573e7b26f Fixes: b75bcc978a ("mb/ocp/tiogapass: Properly configure early serial output") Signed-off-by: Paul Menzel <pmenzel@molgen.mpg.de> Reviewed-on: https://review.coreboot.org/c/coreboot/+/39870 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Andrey Petrov <andrey.petrov@gmail.com>
Diffstat (limited to 'src/mainboard/ocp')
-rw-r--r--src/mainboard/ocp/tiogapass/bootblock.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/ocp/tiogapass/bootblock.c b/src/mainboard/ocp/tiogapass/bootblock.c
index d9a86e99f0..d507422d30 100644
--- a/src/mainboard/ocp/tiogapass/bootblock.c
+++ b/src/mainboard/ocp/tiogapass/bootblock.c
@@ -29,7 +29,7 @@ static void enable_espi_lpc_io_windows(void)
/* Enable com1 (0x3f8), com2 (02f8) and superio (0x2e) */
pci_mmio_write_config32(PCH_DEV_LPC, 0x80,
- (1<<28) | (1<<16) | (1<<17) | (0 << 0) | (1 << 4));
+ (1 << 28) | (1 << 16) | (1 << 17) | (0 << 0) | (1 << 4));
}
static uint8_t com_to_ast_sio(uint8_t com)