diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2006-07-06 00:55:04 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2006-07-06 00:55:04 +0000 |
commit | 9354e992d2b35383a715b4466f2c410a13ccaf12 (patch) | |
tree | 805c95201a8dad2e68ffe7d4d24e565dbc883144 /sys/dev/ic/mpivar.h | |
parent | 5403233317e305d8cbcd15c34c2be36d38af7051 (diff) |
stash a pointer to the scsibus attached to us so we dont have to walk the
device tree all the time.
Diffstat (limited to 'sys/dev/ic/mpivar.h')
-rw-r--r-- | sys/dev/ic/mpivar.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/ic/mpivar.h b/sys/dev/ic/mpivar.h index 96e0df6e6f4..e019923e1ed 100644 --- a/sys/dev/ic/mpivar.h +++ b/sys/dev/ic/mpivar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: mpivar.h,v 1.15 2006/06/16 05:36:46 dlg Exp $ */ +/* $OpenBSD: mpivar.h,v 1.16 2006/07/06 00:55:03 dlg Exp $ */ /* * Copyright (c) 2005 David Gwynne <dlg@openbsd.org> @@ -97,6 +97,8 @@ struct mpi_softc { int sc_flags; #define MPI_F_VMWARE (1<<0) + struct scsibus_softc *sc_scsibus; + bus_space_tag_t sc_iot; bus_space_handle_t sc_ioh; bus_size_t sc_ios; |