diff options
-rw-r--r-- | sys/dev/ata/ata-pci.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/dev/ata/ata-pci.c b/sys/dev/ata/ata-pci.c index 325ed27..027556d 100644 --- a/sys/dev/ata/ata-pci.c +++ b/sys/dev/ata/ata-pci.c @@ -95,6 +95,10 @@ ata_pci_probe(device_t dev) if (!ata_intel_ident(dev)) return 0; break; + case ATA_NATIONAL_ID: + if (!ata_national_ident(dev)) + return 0; + break; case ATA_NVIDIA_ID: if (!ata_nvidia_ident(dev)) return 0; |