Changeset 171 for trunk/src/os2ahci/os2ahci.c
- Timestamp:
- Sep 7, 2013, 5:52:45 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/os2ahci/os2ahci.c
r170 r171 4 4 * Copyright (c) 2011 thi.guten Software Development 5 5 * Copyright (c) 2011 Mensys B.V. 6 * Portions copyright (c) 2013 David Azarewicz6 * Copyright (c) 2013 David Azarewicz 7 7 * 8 8 * Authors: Christian Mueller, Markus Thielen … … 153 153 154 154 /****************************************************************************** 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. 158 156 * 159 157 * NOTE: this is also used as the IDC entry point. We expect an IOCTL request … … 178 176 break; 179 177 178 case CMDOpen: 179 build_user_info(1); 180 rc = STDON; 181 break; 182 180 183 case CMDINPUT: 181 184 rc = char_dev_input((RP_RWV _far *) req); … … 184 187 case CMDSaveRestore: 185 188 rc = sr_drv(((RPSAVERESTORE _far *) req)->FuncCode); 189 break; 190 191 case CMDClose: 192 case CMDInputS: 193 case CMDInputF: 194 /* noop */ 195 rc = STDON; 186 196 break; 187 197 … … 831 841 #endif 832 842 833 build_user_info( );843 build_user_info(0); 834 844 } 835 845 iorb_done(iorb);
Note:
See TracChangeset
for help on using the changeset viewer.