diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2006-06-29 22:18:15 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2006-06-29 22:18:15 +0000 |
commit | 910faa267a21360973c5eb15a3e89212aebf3056 (patch) | |
tree | 4f96dfd1ead9eed665c6fe1cae209dda34e690a6 /sys/dev/pci | |
parent | ea135e418de3adec71d76e5556968728d252fa70 (diff) |
we dont have to beat mpt to attach to this hardware anymore.
Diffstat (limited to 'sys/dev/pci')
-rw-r--r-- | sys/dev/pci/mpi_pci.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/mpi_pci.c b/sys/dev/pci/mpi_pci.c index 3955a7ffc0d..da04d3fe687 100644 --- a/sys/dev/pci/mpi_pci.c +++ b/sys/dev/pci/mpi_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mpi_pci.c,v 1.8 2006/06/16 05:36:46 dlg Exp $ */ +/* $OpenBSD: mpi_pci.c,v 1.9 2006/06/29 22:18:14 dlg Exp $ */ /* * Copyright (c) 2005 David Gwynne <dlg@openbsd.org> @@ -80,7 +80,7 @@ mpi_pci_match(struct device *parent, void *match, void *aux) struct pci_attach_args *pa = aux; return (pci_matchbyid(pa, mpi_devices, - sizeof(mpi_devices) / sizeof(mpi_devices[0])) * 3); + sizeof(mpi_devices) / sizeof(mpi_devices[0]))); } void |