Ignore:
Timestamp:
Apr 15, 2013, 11:46:26 PM (12 years ago)
Author:
David Azarewicz
Message:

debugging updates

File:
1 edited

Legend:

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

    r154 r155  
    106106  drv_name,                        /* driver name */
    107107  "AHCI SATA Driver",              /* driver description */
    108   "GNU",                           /* vendor name */
     108  DVENDOR,                         /* vendor name */
    109109  CMVERSION_MAJOR,                 /* RM interface version major */
    110110  CMVERSION_MINOR,                 /* RM interface version minor */
     
    246246        /* set COM port base address for debug messages */
    247247        drv_parm_int(s, com_base, u16, 16);
     248        if (com_base == 1) com_base = 0x3f8;
     249        if (com_base == 2) com_base = 0x2f8;
    248250        break;
    249251
     
    811813
    812814      /* DAZ turn off COM port output if on */
    813       com_base = 0;
     815      //com_base = 0;
    814816
    815817      /* release all adapters */
     
    12411243    }
    12421244
    1243     if (debug >= min_debug) {
     1245    if (debug > min_debug) {
    12441246      printf("IORB %Fp queued (cmd = %d/%d, queue = %Fp [%s], timeout = %ld)\n",
    12451247             iorb, iorb->CommandCode, iorb->CommandModifier, queue, queue_type,
     
    13441346  iorb->Status |= IORB_DONE;
    13451347
    1346   dprintf("IORB %Fp complete (status = 0x%04x, error = 0x%04x)\n",
     1348  ddprintf("IORB %Fp complete (status = 0x%04x, error = 0x%04x)\n",
    13471349          iorb, iorb->Status, iorb->ErrorCode);
    13481350
Note: See TracChangeset for help on using the changeset viewer.