summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorDavid Gwynne <dlg@cvs.openbsd.org>2007-03-20 12:46:27 +0000
committerDavid Gwynne <dlg@cvs.openbsd.org>2007-03-20 12:46:27 +0000
commit184ed13280cd80c815759bd079cf14fde39adb2f (patch)
treeac0f5cfe56f040fd37afe8abc0573752e8ba11e9 /sys
parentee7dd674a51b871a07734beda94aee0196e71330 (diff)
commit the rest of the jmicron ids. jsg has been trying to get me to add
these since last year, but i didnt see the point till the code would be useful anywhere.
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/pci/ahci.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/sys/dev/pci/ahci.c b/sys/dev/pci/ahci.c
index c9348a07403..c867d6ff5ca 100644
--- a/sys/dev/pci/ahci.c
+++ b/sys/dev/pci/ahci.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ahci.c,v 1.87 2007/03/20 12:01:18 pascoe Exp $ */
+/* $OpenBSD: ahci.c,v 1.88 2007/03/20 12:46:26 dlg Exp $ */
/*
* Copyright (c) 2006 David Gwynne <dlg@openbsd.org>
@@ -386,7 +386,15 @@ int ahci_jmicron_match(struct pci_attach_args *);
int ahci_jmicron_attach(struct pci_attach_args *);
static const struct ahci_device ahci_devices[] = {
+ { PCI_VENDOR_JMICRON, PCI_PRODUCT_JMICRON_JMB360,
+ ahci_jmicron_match, ahci_jmicron_attach },
{ PCI_VENDOR_JMICRON, PCI_PRODUCT_JMICRON_JMB361,
+ ahci_jmicron_match, ahci_jmicron_attach },
+ { PCI_VENDOR_JMICRON, PCI_PRODUCT_JMICRON_JMB363,
+ ahci_jmicron_match, ahci_jmicron_attach },
+ { PCI_VENDOR_JMICRON, PCI_PRODUCT_JMICRON_JMB365,
+ ahci_jmicron_match, ahci_jmicron_attach },
+ { PCI_VENDOR_JMICRON, PCI_PRODUCT_JMICRON_JMB366,
ahci_jmicron_match, ahci_jmicron_attach }
};