diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2009-10-17 21:44:01 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2009-10-17 21:44:01 +0000 |
commit | 5b9427cd33b6479564a20b687590acac91297266 (patch) | |
tree | 929ec7c846e2741352d651caec3f88ac19cd38a8 /sys/dev | |
parent | ab7d7a630c9c0f262783bbf9426a0a6f710db675 (diff) |
Another MCP77 controller that while matched already by class,
needs to be told to use the nvidia specific quirks to
detect attached devices.
From and tested by minusf@obiit.org
Diffstat (limited to 'sys/dev')
-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 7189c55c934..32087fd168d 100644 --- a/sys/dev/pci/ahci.c +++ b/sys/dev/pci/ahci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ahci.c,v 1.150 2009/10/13 00:19:38 sthen Exp $ */ +/* $OpenBSD: ahci.c,v 1.151 2009/10/17 21:44:00 jsg Exp $ */ /* * Copyright (c) 2006 David Gwynne <dlg@openbsd.org> @@ -440,6 +440,8 @@ static const struct ahci_device ahci_devices[] = { NULL, ahci_nvidia_mcp_attach }, { PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP77_AHCI_5, NULL, ahci_nvidia_mcp_attach }, + { PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP77_AHCI_6, + NULL, ahci_nvidia_mcp_attach }, { PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8251_SATA, ahci_no_match, ahci_vt8251_attach } |