Edward O'Callaghan has uploaded this change for review. ( https://review.coreboot.org/c/flashrom/+/64246 )
Change subject: it85spi.c: Fix some space/tab trivial style issues ......................................................................
it85spi.c: Fix some space/tab trivial style issues
Change-Id: I9192461281f9e760644a241148f4c5100f76da98 Signed-off-by: Edward O'Callaghan quasisec@google.com --- M it85spi.c 1 file changed, 8 insertions(+), 8 deletions(-)
git pull ssh://review.coreboot.org:29418/flashrom refs/changes/46/64246/1
diff --git a/it85spi.c b/it85spi.c index 51328a8..4fe2b68 100644 --- a/it85spi.c +++ b/it85spi.c @@ -241,9 +241,9 @@ struct it85spi_data *data = flash->mst->spi.data;
it85xx_enter_scratch_rom(data); - /* Exit scratch ROM ONLY when programmer shuts down. Otherwise, the - * temporary flash state may halt the EC. - */ + /* Exit scratch ROM ONLY when programmer shuts down. Otherwise, the + * temporary flash state may halt the EC. + */
#ifdef LPC_IO INDIRECT_A1(data->shm_io_base, (((unsigned long int)data->ce_high) >> 8) & 0xff); @@ -253,22 +253,22 @@ #ifdef LPC_MEMORY mmio_writeb(0, data->ce_high); #endif - for (i = 0; i < writecnt; ++i) { + for (i = 0; i < writecnt; ++i) { #ifdef LPC_IO INDIRECT_WRITE(data->shm_io_base, writearr[i]); #endif #ifdef LPC_MEMORY mmio_writeb(writearr[i], data->ce_low); #endif - } - for (i = 0; i < readcnt; ++i) { + } + for (i = 0; i < readcnt; ++i) { #ifdef LPC_IO readarr[i] = INDIRECT_READ(data->shm_io_base); #endif #ifdef LPC_MEMORY readarr[i] = mmio_readb(data->ce_low); #endif - } + } #ifdef LPC_IO INDIRECT_A1(data->shm_io_base, (((unsigned long int)data->ce_high) >> 8) & 0xff); INDIRECT_WRITE(data->shm_io_base, 0xFF); /* Write anything to this address.*/ @@ -277,7 +277,7 @@ mmio_writeb(0, data->ce_high); #endif
- return 0; + return 0; }
static const struct spi_master spi_master_it85xx = {