diff options
author | Marco Peereboom <marco@cvs.openbsd.org> | 2008-10-28 11:00:41 +0000 |
---|---|---|
committer | Marco Peereboom <marco@cvs.openbsd.org> | 2008-10-28 11:00:41 +0000 |
commit | 61cb552b1a1935425b2f367e08d30751c4d3692d (patch) | |
tree | 3ff29202012e7f497001176872ff94c6b9823dcd /sys/dev/pci | |
parent | 2ee80d0303a231b6478223626a6f89587dc6a975 (diff) |
Add beginings of bio. Disabled for now.
dlg "go go go"
Diffstat (limited to 'sys/dev/pci')
-rw-r--r-- | sys/dev/pci/mpi_pci.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/dev/pci/mpi_pci.c b/sys/dev/pci/mpi_pci.c index b7573eb6878..7531437f3b1 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.20 2008/05/27 21:52:28 dlg Exp $ */ +/* $OpenBSD: mpi_pci.c,v 1.21 2008/10/28 11:00:40 marco Exp $ */ /* * Copyright (c) 2005 David Gwynne <dlg@openbsd.org> @@ -17,11 +17,14 @@ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ +#include "bio.h" + #include <sys/param.h> #include <sys/systm.h> #include <sys/kernel.h> #include <sys/malloc.h> #include <sys/device.h> +#include <sys/rwlock.h> #include <machine/bus.h> |