diff options
author | Tom Cosgrove <tom@cvs.openbsd.org> | 2006-10-19 09:55:48 +0000 |
---|---|---|
committer | Tom Cosgrove <tom@cvs.openbsd.org> | 2006-10-19 09:55:48 +0000 |
commit | d079ea7bd9c8c790e010d1123f8cb2567f8bd39a (patch) | |
tree | 2cd9d1dbffa86a97f858a8ebf26d6f452b82d6a0 | |
parent | d79292e381dcbef055c918dd20e45b8b423e0baf (diff) |
Match the IDE controller in the AMD Geode companion device CS5536.
The disk in the AMD Geode LX-800-based system now works much faster.
hints grange@; ok jsg@
-rw-r--r-- | sys/dev/pci/pciide.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/dev/pci/pciide.c b/sys/dev/pci/pciide.c index 8ed935347fc..d45ff16e42a 100644 --- a/sys/dev/pci/pciide.c +++ b/sys/dev/pci/pciide.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pciide.c,v 1.258 2006/10/02 17:56:41 brad Exp $ */ +/* $OpenBSD: pciide.c,v 1.259 2006/10/19 09:55:47 tom Exp $ */ /* $NetBSD: pciide.c,v 1.127 2001/08/03 01:31:08 tsutsui Exp $ */ /* @@ -516,6 +516,10 @@ const struct pciide_product_desc pciide_amd_products[] = { { PCI_PRODUCT_AMD_8111_IDE, 0, amd756_chip_map + }, + { PCI_PRODUCT_AMD_CS5536_IDE, + 0, + amd756_chip_map } }; |