Changeset 76 for trunk/src/os2ahci/pci.c


Ignore:
Timestamp:
Feb 18, 2011, 10:09:10 PM (14 years ago)
Author:
chris
Message:
  • APM support
  • Generic IOCTL interface for adapter passthrough commands (ATA and ATAPI)
  • Fixes to ATAPI sense data handling
  • Cosmetic changes to debug reporting
  • Fixed missing interrupt enable flag for PIO transfer completions
  • Added command line switch /I to ignore specific adapters
File:
1 edited

Legend:

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

    r48 r76  
    409409  UCHAR index;
    410410  UCHAR rc;
     411  int ad_indx = 0;
    411412  int i;
    412413
     
    460461      if (rc == OH_SUCCESS) {
    461462        /* found a device */
     463        if (ad_ignore & (1U << ad_indx++)) {
     464          /* ignore this adapter */
     465          continue;
     466        }
    462467        add_pci_device(pci_ids + i, &data);
    463468        if (++index > 180) {
Note: See TracChangeset for help on using the changeset viewer.