diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2017-05-02 20:02:01 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2017-05-02 20:02:01 -0400 |
commit | 3fdabaee7d4c36231fe2f052b2d3464dba690acc (patch) | |
tree | 8bff63779d9c385ed9b9ee65ac31bae5d87f2548 /src | |
parent | 3198c06b7b5457eecf5fbc6fd47fbea300a843e7 (diff) | |
download | seabios-3fdabaee7d4c36231fe2f052b2d3464dba690acc.tar.gz |
src: Minor - remove tab characters that slipped into SeaBIOS C code
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src')
-rw-r--r-- | src/fw/coreboot.c | 2 | ||||
-rw-r--r-- | 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 7214f8ae..7c0954b5 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 7bc8a85b..80c6d6b7 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. |