]> xenbits.xensource.com Git - people/andrewcoop/seabios.git/commitdiff
src: Minor - remove tab characters that slipped into SeaBIOS C code
authorKevin O'Connor <kevin@koconnor.net>
Wed, 3 May 2017 00:02:01 +0000 (20:02 -0400)
committerKevin O'Connor <kevin@koconnor.net>
Wed, 3 May 2017 00:02:01 +0000 (20:02 -0400)
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
src/fw/coreboot.c
src/hw/mpt-scsi.c

index 7214f8ae0fe19644e5af5cb95d3c64cff58fde85..7c0954b5398cfe21d83c83ffd555807349a42eeb 100644 (file)
@@ -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;
index 7bc8a85b8d321948cc3ef967c7cd8bfda60263a2..80c6d6b7c26e4e16fcc137b0bc194ba2c0b74db3 100644 (file)
@@ -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.