diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2018-02-01 09:21:46 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2018-04-29 17:04:26 +0000 |
commit | db8e8f39d3b27b22f2d7b65ae72bef826ba054d4 (patch) | |
tree | 25734dd61fc264c7edd5f0895976c86ff9d74924 /src/mainboard/biostar/am1ml | |
parent | 36ece9380a918d81a11a1d626d1577af9a165f64 (diff) | |
download | coreboot-db8e8f39d3b27b22f2d7b65ae72bef826ba054d4.tar.xz |
mainboard/biostar/am1ml: Add required space before opening parenthesis '('
Change-Id: Ic1ea93ec54f6ca52e1af8ff09998b8859358b5a0
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/23534
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Diffstat (limited to 'src/mainboard/biostar/am1ml')
-rw-r--r-- | src/mainboard/biostar/am1ml/romstage.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/biostar/am1ml/romstage.c b/src/mainboard/biostar/am1ml/romstage.c index 20708ccd47..7caa4dccb0 100644 --- a/src/mainboard/biostar/am1ml/romstage.c +++ b/src/mainboard/biostar/am1ml/romstage.c @@ -153,7 +153,7 @@ void board_BeforeAgesa(struct sysinfo *cb) /* On Larne, after LpcClkDrvSth is set, it needs some time to be stable, because of the buffer ICS551M */ int i; - for(i = 0; i < 200000; i++) + for (i = 0; i < 200000; i++) val = inb(0xcd6); outb(0xEA, 0xCD6); |