diff options
author | Mike Belopuhov <mikeb@cvs.openbsd.org> | 2008-12-13 11:49:55 +0000 |
---|---|---|
committer | Mike Belopuhov <mikeb@cvs.openbsd.org> | 2008-12-13 11:49:55 +0000 |
commit | 37ec387a19aff9772896e06a68793c68b5e91341 (patch) | |
tree | be23a763ad5b3df207c22167b85edb8e05d05d69 /sys | |
parent | 651c18db253c35178357b1fc728c45482ea62d1b (diff) |
;5Anvidia mcp67 ahci controller also needs special handling.
from Marko Pecic. thanks!
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 96f6edd7e3f..5208944c457 100644 --- a/sys/dev/pci/ahci.c +++ b/sys/dev/pci/ahci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ahci.c,v 1.144 2008/12/07 22:37:05 mikeb Exp $ */ +/* $OpenBSD: ahci.c,v 1.145 2008/12/13 11:49:54 mikeb Exp $ */ /* * Copyright (c) 2006 David Gwynne <dlg@openbsd.org> @@ -433,6 +433,8 @@ static const struct ahci_device ahci_devices[] = { NULL, ahci_ati_sb600_attach }, { PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP65_AHCI_2, NULL, ahci_nvidia_mcp_attach }, + { PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP67_AHCI_1, + NULL, ahci_nvidia_mcp_attach }, { PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP77_AHCI_5, NULL, ahci_nvidia_mcp_attach } }; |