From: Kevin O'Connor Date: Wed, 3 May 2017 00:02:01 +0000 (-0400) Subject: src: Minor - remove tab characters that slipped into SeaBIOS C code X-Git-Tag: rel-1.11.0~38 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=3fdabaee7d4c36231fe2f052b2d3464dba690acc;p=people%2Fandrewcoop%2Fseabios.git src: Minor - remove tab characters that slipped into SeaBIOS C code Signed-off-by: Kevin O'Connor --- 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.