Changeset 181 for trunk/src/os2ahci/os2ahci.c
- Timestamp:
- Dec 13, 2016, 3:07:49 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/os2ahci/os2ahci.c
r178 r181 606 606 * link in 'vNext'. 607 607 */ 608 vNext = (pIorb->RequestControl | IORB_CHAIN) ? pIorb->pNxtIORB : NULL; 608 if (pIorb->RequestControl & IORB_CHAIN) vNext = pIorb->pNxtIORB; 609 else vNext = (IORBH FAR16DATA *)0; 609 610 610 611 pIorb->Status = 0; … … 1317 1318 */ 1318 1319 char *queue_type; 1319 int min_debug = 1;1320 int min_debug = 7; 1320 1321 1321 1322 if ((u32)queue >> 16 == (u32)&queue >> 16) /* DAZ this is bogus */ … … 1323 1324 /* this queue is on the stack */ 1324 1325 queue_type = "local"; 1325 min_debug = 2;1326 min_debug = 8; 1326 1327 1327 1328 } … … 1334 1335 { 1335 1336 queue_type = "abort"; 1336 min_debug = 2;1337 min_debug = 8; 1337 1338 1338 1339 } … … 1386 1387 if (found) 1387 1388 { 1388 DPRINTF( 3,"IORB %x removed (queue = %x)\n", vIorb, queue);1389 DPRINTF(8,"IORB %x removed (queue = %x)\n", vIorb, queue); 1389 1390 } 1390 1391 else … … 1458 1459 pIorb->Status |= IORB_DONE; 1459 1460 1460 DPRINTF( 1,"IORB %x complete status=0x%04x error=0x%04x\n",1461 DPRINTF(7,"IORB %x complete status=0x%04x error=0x%04x\n", 1461 1462 vIorb, pIorb->Status, pIorb->ErrorCode); 1462 1463
Note:
See TracChangeset
for help on using the changeset viewer.