From 3fdabaee7d4c36231fe2f052b2d3464dba690acc Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Tue, 2 May 2017 20:02:01 -0400 Subject: [PATCH] src: Minor - remove tab characters that slipped into SeaBIOS C code Signed-off-by: Kevin O'Connor --- src/fw/coreboot.c | 2 +- src/hw/mpt-scsi.c | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/fw/coreboot.c b/src/fw/coreboot.c index 7214f8a..7c0954b 100644 --- a/src/fw/coreboot.c +++ b/src/fw/coreboot.c @@ -225,7 +225,7 @@ void coreboot_debug_putc(char c) u32 cursor = cbcon->cursor & CBMC_CURSOR_MASK; u32 flags = cbcon->cursor & ~CBMC_CURSOR_MASK; if (cursor >= cbcon->size) - return; // Old coreboot version with legacy overflow mechanism. + return; // Old coreboot version with legacy overflow mechanism. cbcon->body[cursor++] = c; if (cursor >= cbcon->size) { cursor = 0; diff --git a/src/hw/mpt-scsi.c b/src/hw/mpt-scsi.c index 7bc8a85..80c6d6b 100644 --- a/src/hw/mpt-scsi.c +++ b/src/hw/mpt-scsi.c @@ -274,12 +274,12 @@ init_mpt_scsi(void *data) // send IOC Init message through the doorbell mpt_out_doorbell(MPT_DOORBELL_HANDSHAKE, - sizeof(MptIOCInitRequest)/sizeof(u32), - iobase); + sizeof(MptIOCInitRequest)/sizeof(u32), + iobase); outsl(iobase + MPT_REG_DOORBELL, - (u32 *)&MptIOCInitRequest, - sizeof(MptIOCInitRequest)/sizeof(u32)); + (u32 *)&MptIOCInitRequest, + sizeof(MptIOCInitRequest)/sizeof(u32)); // Read the reply 16 bits at a time. Cannot use insl // because the port is 32 bits wide. -- 2.39.5