Changeset 191 for trunk/src/os2ahci/ahci.c
- Timestamp:
- Aug 10, 2017, 11:21:16 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/os2ahci/ahci.c
r190 r191 692 692 if (rc) 693 693 { 694 dprintf(0,"failed to register interrupt %d\n", ai->irq);694 dprintf(0,"failed to register interrupt %d\n", ai->irq); 695 695 return(-1); 696 696 } … … 1498 1498 IORB_QUEUE done_queue; 1499 1499 IORBH FAR16DATA *vIorb; 1500 IORBH FAR16DATA *vNext = NULL;1500 IORBH FAR16DATA *vNext = FAR16NULL; 1501 1501 u8 *port_mmio = port_base(ai, p); 1502 1502 u32 irq_stat; … … 1555 1555 * processed after releasing the spinlock. 1556 1556 */ 1557 for (vIorb = ai->ports[p].iorb_queue.vRoot; vIorb != NULL; vIorb = vNext)1557 for (vIorb = ai->ports[p].iorb_queue.vRoot; vIorb != FAR16NULL; vIorb = vNext) 1558 1558 { 1559 1559 IORBH *pIorb = Far16ToFlat(vIorb); … … 1584 1584 1585 1585 /* complete all IORBs in the done queue */ 1586 for (vIorb = done_queue.vRoot; vIorb != NULL; vIorb = vNext)1586 for (vIorb = done_queue.vRoot; vIorb != FAR16NULL; vIorb = vNext) 1587 1587 { 1588 1588 IORBH *pIorb = Far16ToFlat(vIorb);
Note:
See TracChangeset
for help on using the changeset viewer.