diff options
author | sasano <sasano@cvs.openbsd.org> | 2012-04-13 11:33:13 +0000 |
---|---|---|
committer | sasano <sasano@cvs.openbsd.org> | 2012-04-13 11:33:13 +0000 |
commit | ff1803867a2644f9b3a317aca62a3557ea28773c (patch) | |
tree | 2a51194b53ca0aba9cf73dd030c6626863356c5d /sys | |
parent | 3d9bfb0c9c308af47644ea5a6f2958f4828c4e14 (diff) |
Fix waiting problem at boot on AMD Hudson's AHCI.
Ok by mikeb@ and deraadt@
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/pci/ahci.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/pci/ahci.c b/sys/dev/pci/ahci.c index 774e48aa99b..ef514aab902 100644 --- a/sys/dev/pci/ahci.c +++ b/sys/dev/pci/ahci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ahci.c,v 1.186 2012/02/04 21:44:54 krw Exp $ */ +/* $OpenBSD: ahci.c,v 1.187 2012/04/13 11:33:12 sasano Exp $ */ /* * Copyright (c) 2006 David Gwynne <dlg@openbsd.org> @@ -462,6 +462,8 @@ int ahci_intel_attach(struct ahci_softc *, static const struct ahci_device ahci_devices[] = { { PCI_VENDOR_AMD, PCI_PRODUCT_AMD_HUDSON2_SATA, NULL, ahci_amd_hudson2_attach }, + { PCI_VENDOR_AMD, PCI_PRODUCT_AMD_HUDSON_AHCI_1, + NULL, ahci_ati_sb700_attach }, { PCI_VENDOR_ATI, PCI_PRODUCT_ATI_SB600_SATA, NULL, ahci_ati_sb600_attach }, |