Ignore:
Timestamp:
Sep 7, 2013, 5:52:45 PM (12 years ago)
Author:
David Azarewicz
Message:

Enhanced debug output
Fixed a long time PCI ID bug.

File:
1 edited

Legend:

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

    r170 r171  
    44 * Copyright (c) 2011 thi.guten Software Development
    55 * Copyright (c) 2011 Mensys B.V.
    6  * Portions copyright (c) 2013 David Azarewicz
     6 * Copyright (c) 2013 David Azarewicz
    77 *
    88 * Authors: Christian Mueller, Markus Thielen
     
    153153
    154154/******************************************************************************
    155  * OS/2 device driver main strategy function. This function is only used
    156  * for initialization purposes; all other calls go directly to the adapter
    157  * device driver's strategy function.
     155 * OS/2 device driver main strategy function.
    158156 *
    159157 * NOTE: this is also used as the IDC entry point. We expect an IOCTL request
     
    178176    break;
    179177
     178  case CMDOpen:
     179    build_user_info(1);
     180    rc = STDON;
     181    break;
     182
    180183  case CMDINPUT:
    181184    rc = char_dev_input((RP_RWV _far *) req);
     
    184187  case CMDSaveRestore:
    185188    rc = sr_drv(((RPSAVERESTORE _far *) req)->FuncCode);
     189    break;
     190
     191  case CMDClose:
     192  case CMDInputS:
     193  case CMDInputF:
     194    /* noop */
     195    rc = STDON;
    186196    break;
    187197
     
    831841      #endif
    832842
    833       build_user_info();
     843      build_user_info(0);
    834844    }
    835845    iorb_done(iorb);
Note: See TracChangeset for help on using the changeset viewer.