diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2016-08-25 20:57:08 +0200 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2016-08-31 20:24:20 +0200 |
commit | 2b010b8795de84b6753c5e49d6a73c25fee96da1 (patch) | |
tree | 55efcad396e656d06e44619352d71d919ee5fb04 /src/ec/quanta/it8518 | |
parent | 195c26810d103e69adc629fa72b6eec33f2dd901 (diff) |
src/ec: Add required space before opening parenthesis '('
Change-Id: I013f71b702644ab337c3d76be1489530bad6e6cc
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/16322
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/ec/quanta/it8518')
-rw-r--r-- | src/ec/quanta/it8518/ec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ec/quanta/it8518/ec.c b/src/ec/quanta/it8518/ec.c index 09a6c045ca..af0849c600 100644 --- a/src/ec/quanta/it8518/ec.c +++ b/src/ec/quanta/it8518/ec.c @@ -29,7 +29,7 @@ static int input_buffer_empty(u16 status_reg) { u32 timeout; - for(timeout = KBC_TIMEOUT_IN_MS; timeout && (inb(status_reg) & KBD_IBF); + for (timeout = KBC_TIMEOUT_IN_MS; timeout && (inb(status_reg) & KBD_IBF); timeout--) { udelay(1000); } @@ -45,7 +45,7 @@ static int input_buffer_empty(u16 status_reg) static int output_buffer_full(u16 status_reg) { u32 timeout; - for(timeout = KBC_TIMEOUT_IN_MS; timeout && ((inb(status_reg) + for (timeout = KBC_TIMEOUT_IN_MS; timeout && ((inb(status_reg) & KBD_OBF) == 0); timeout--) { udelay(1000); } |