diff options
Diffstat (limited to 'sys/dev/pci/ahci.c')
-rw-r--r-- | sys/dev/pci/ahci.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/dev/pci/ahci.c b/sys/dev/pci/ahci.c index bfce1cb469b..390483770db 100644 --- a/sys/dev/pci/ahci.c +++ b/sys/dev/pci/ahci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ahci.c,v 1.125 2007/07/02 01:29:54 dlg Exp $ */ +/* $OpenBSD: ahci.c,v 1.126 2007/07/02 14:01:13 dlg Exp $ */ /* * Copyright (c) 2006 David Gwynne <dlg@openbsd.org> @@ -402,6 +402,10 @@ struct cfattach ahci_pci_ca = { sizeof(struct ahci_softc), ahci_pci_match, ahci_pci_attach }; +struct cfattach ahci_jmb_ca = { + sizeof(struct ahci_softc), ahci_pci_match, ahci_pci_attach +}; + struct cfdriver ahci_cd = { NULL, "ahci", DV_DULL }; |