diff options
author | Edward O'Callaghan <quasisec@google.com> | 2020-04-24 13:39:55 +1000 |
---|---|---|
committer | Edward O'Callaghan <quasisec@chromium.org> | 2020-04-24 11:52:59 +0000 |
commit | 94991d83e47453367819491fa7f3c9ff4ff0d68d (patch) | |
tree | de748471797527868ebe86c87c8acaaee40e1b50 | |
parent | 552e60e5716277351ad8b6ca8a0652d0eeb8d986 (diff) | |
download | flashrom-94991d83e47453367819491fa7f3c9ff4ff0d68d.tar.gz flashrom-94991d83e47453367819491fa7f3c9ff4ff0d68d.tar.bz2 flashrom-94991d83e47453367819491fa7f3c9ff4ff0d68d.zip |
lspcon_i2c_spi.c: Trivial style fix
Change-Id: I0675b467d7b0d24626a336033668bf80bfeeb815
Signed-off-by: Edward O'Callaghan <quasisec@google.com>
Reviewed-on: https://review.coreboot.org/c/flashrom/+/40679
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr>
-rw-r--r-- | lspcon_i2c_spi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lspcon_i2c_spi.c b/lspcon_i2c_spi.c index 1ee5f373..8de2c148 100644 --- a/lspcon_i2c_spi.c +++ b/lspcon_i2c_spi.c @@ -151,7 +151,7 @@ static int lspcon_i2c_spi_wait_command_done(int fd, unsigned int offset, int mas int ret = 0; do { ret |= lspcon_i2c_spi_read_register(fd, offset, &val); - } while(!ret && (val & mask) && ++tried < MAX_SPI_WAIT_RETRIES); + } while (!ret && (val & mask) && ++tried < MAX_SPI_WAIT_RETRIES); if (tried == MAX_SPI_WAIT_RETRIES) { msg_perr("Error: Time out on sending command.\n"); |