Ignore:
Timestamp:
Jan 23, 2021, 6:50:32 PM (5 years ago)
Author:
David Azarewicz
Message:

Reworked internal implementation of /U

File:
1 edited

Legend:

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

    r205 r206  
    8888      for (d = 0; d <= pi->dev_max; d++)
    8989      {
    90         if (pi->devs[d].present && !pi->devs[d].ignored)
     90        if (pi->devs[d].present)
    9191        {
    9292          /* add this device to the device list */
     
    140140  if (a >= ad_info_cnt || p > ad_infos[a].port_max
    141141     || d > ad_infos[a].ports[p].dev_max
    142      || !ad_infos[a].ports[p].devs[d].present
    143      || ad_infos[a].ports[p].devs[d].ignored)
     142     || !ad_infos[a].ports[p].devs[d].present)
    144143  {
    145144    return(RPDONE | RPERR_UNIT);
     
    537536      for (_d = 0; _d <= pi->dev_max; _d++)
    538537      {
    539         if (pi->devs[_d].present && !pi->devs[_d].ignored)
     538        if (pi->devs[_d].present)
    540539        {
    541540          if (unit-- == 0)
Note: See TracChangeset for help on using the changeset viewer.