From a5cd71ee7b19e66ee87b0e56214dc7ec420e8eb4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B8ren=20Schmidt?= Date: Tue, 9 Dec 2003 19:13:50 +0000 Subject: [PATCH] Add back the national support, this was removed by accident earlier. --- sys/dev/ata/ata-pci.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sys/dev/ata/ata-pci.c b/sys/dev/ata/ata-pci.c index 325ed274515..027556de2bf 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;