summaryrefslogtreecommitdiff
path: root/sys/dev/ic/mpi.c
diff options
context:
space:
mode:
authorDavid Gwynne <dlg@cvs.openbsd.org>2008-09-30 01:50:49 +0000
committerDavid Gwynne <dlg@cvs.openbsd.org>2008-09-30 01:50:49 +0000
commita62b1a12f34a753a39b69a17250e8092998881eb (patch)
treef1d4be4dafe2f32dcc80e6306fe08d4f2a43c45a /sys/dev/ic/mpi.c
parent9ba17d78a7af44abea791f1c7911aa71e0dcc9bc (diff)
straighten the deck chairs slightly
Diffstat (limited to 'sys/dev/ic/mpi.c')
-rw-r--r--sys/dev/ic/mpi.c17
1 files changed, 13 insertions, 4 deletions
diff --git a/sys/dev/ic/mpi.c b/sys/dev/ic/mpi.c
index a9ac8f9aefa..f417ab8b64d 100644
--- a/sys/dev/ic/mpi.c
+++ b/sys/dev/ic/mpi.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: mpi.c,v 1.93 2008/05/25 23:45:53 dlg Exp $ */
+/* $OpenBSD: mpi.c,v 1.94 2008/09/30 01:50:48 dlg Exp $ */
/*
* Copyright (c) 2005, 2006 David Gwynne <dlg@openbsd.org>
@@ -50,7 +50,9 @@ uint32_t mpi_debug = 0
#endif
struct cfdriver mpi_cd = {
- NULL, "mpi", DV_DULL
+ NULL,
+ "mpi",
+ DV_DULL
};
int mpi_scsi_cmd(struct scsi_xfer *);
@@ -60,11 +62,18 @@ int mpi_scsi_ioctl(struct scsi_link *, u_long, caddr_t,
int, struct proc *);
struct scsi_adapter mpi_switch = {
- mpi_scsi_cmd, mpi_minphys, NULL, NULL, mpi_scsi_ioctl
+ mpi_scsi_cmd,
+ mpi_minphys,
+ NULL,
+ NULL,
+ mpi_scsi_ioctl
};
struct scsi_device mpi_dev = {
- NULL, NULL, NULL, NULL
+ NULL,
+ NULL,
+ NULL,
+ NULL
};
struct mpi_dmamem *mpi_dmamem_alloc(struct mpi_softc *, size_t);