diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2005-05-26 17:43:26 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2005-05-26 17:43:26 +0000 |
commit | a4e1fb8cc78990f2a38cd87203bc29a189abe7bd (patch) | |
tree | df6ec2601799a438a2f21f62441c6b76f033e044 /sys/dev/pci | |
parent | a5db44fb1a4e56f2564a86f69a6390c1a690f566 (diff) |
nForce4 PATA support from Olivier Crouzet <ol at epita.fr>. ok grange@
Diffstat (limited to 'sys/dev/pci')
-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 5fd4b5e1006..eb0c8401203 100644 --- a/sys/dev/pci/pciide.c +++ b/sys/dev/pci/pciide.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pciide.c,v 1.192 2005/04/29 01:11:46 jsg Exp $ */ +/* $OpenBSD: pciide.c,v 1.193 2005/05/26 17:43:24 jsg Exp $ */ /* $NetBSD: pciide.c,v 1.127 2001/08/03 01:31:08 tsutsui Exp $ */ /* @@ -656,6 +656,10 @@ const struct pciide_product_desc pciide_nvidia_products[] = { { PCI_PRODUCT_NVIDIA_NFORCE3_250_IDE, 0, nforce_chip_map + }, + { PCI_PRODUCT_NVIDIA_NFORCE4_ATA133, + 0, + nforce_chip_map } }; @@ -6563,6 +6567,7 @@ nforce_chip_map(struct pciide_softc *sc, struct pci_attach_args *pa) case PCI_PRODUCT_NVIDIA_NFORCE2_400_IDE: case PCI_PRODUCT_NVIDIA_NFORCE3_IDE: case PCI_PRODUCT_NVIDIA_NFORCE3_250_IDE: + case PCI_PRODUCT_NVIDIA_NFORCE4_ATA133: sc->sc_wdcdev.UDMA_cap = 6; break; default: |