diff options
author | Chris Cappuccio <chris@cvs.openbsd.org> | 2000-07-07 19:07:22 +0000 |
---|---|---|
committer | Chris Cappuccio <chris@cvs.openbsd.org> | 2000-07-07 19:07:22 +0000 |
commit | 549915050878997cfd449554155dee8b289c4458 (patch) | |
tree | 322c984bd9b3caaeab4323805a165081e7d7f3cf /sys | |
parent | c560fb818ec13afec74fa0286e2d9ac338ada9d9 (diff) |
Support Intel 440MX Ultra/33 controller found on various laptops
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/pci/pciide.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/dev/pci/pciide.c b/sys/dev/pci/pciide.c index ac12b46f54f..d8ba9d3ff53 100644 --- a/sys/dev/pci/pciide.c +++ b/sys/dev/pci/pciide.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pciide.c,v 1.27 2000/07/07 18:42:16 chris Exp $ */ +/* $OpenBSD: pciide.c,v 1.28 2000/07/07 19:07:21 chris Exp $ */ /* $NetBSD: pciide.c,v 1.48 1999/11/28 20:05:18 bouyer Exp $ */ /* @@ -275,6 +275,10 @@ const struct pciide_product_desc pciide_intel_products[] = { 0, piix_chip_map }, + { PCI_PRODUCT_INTEL_82440MX_IDE, /* Intel 82440MX IDE */ + 0, + piix_chip_map + }, { PCI_PRODUCT_INTEL_82801AA_IDE, /* Intel 82801AA IDE (ICH) */ 0, piix_chip_map @@ -1346,6 +1350,7 @@ piix_chip_map(sc, pa) sc->sc_wdcdev.cap |= WDC_CAPABILITY_DMA; switch(sc->sc_pp->ide_product) { case PCI_PRODUCT_INTEL_82371AB_IDE: + case PCI_PRODUCT_INTEL_82440MX_IDE: case PCI_PRODUCT_INTEL_82801AA_IDE: case PCI_PRODUCT_INTEL_82801AB_IDE: sc->sc_wdcdev.cap |= WDC_CAPABILITY_UDMA; |