Ignore:
Timestamp:
Apr 10, 2013, 6:47:05 PM (12 years ago)
Author:
David Azarewicz
Message:

Begin adding user info output.
Added LVM support.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/os2ahci/libc.c

    r153 r154  
    6262
    6363/* debug COM port base address */
    64 u16 com_base = 0x03f8;
     64u16 com_base = 0;
    6565
    6666static char  hex_digits[] = "0123456789abcdef";
     
    295295  len += vsprintf(buf + len, fmt, va);
    296296
    297    if (com_base == 0) {
    298      /* write debug message to trace buffer, not COM port */
    299      trace_write(buf, len);
    300      spin_unlock(com_lock);
    301      return;
    302    }
     297  if (com_base == 0) {
     298    /* write debug message to trace buffer, not COM port */
     299    trace_write(buf, len);
     300    spin_unlock(com_lock);
     301    return;
     302  }
    303303
    304304  /* write debug message to serial port */
Note: See TracChangeset for help on using the changeset viewer.