diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2010-01-03 06:47:59 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2010-01-03 06:47:59 +0000 |
commit | 7c12b4a111b1f32305f716cd7e0cb91f87259809 (patch) | |
tree | 80124add3ebbea8c47b19a3de112b5a9ecbc6fc6 /sys/dev/ic/mpivar.h | |
parent | f237769b46c16ab0a5d0a718f379ef00b1f0cedf (diff) |
rename ccb_xs to ccb_cookie, and switch it from a struct scsi_xfer * to a
void *. this will let me stash things other than scsi xfers in the ccb for
ccb_done handlers to use.
Diffstat (limited to 'sys/dev/ic/mpivar.h')
-rw-r--r-- | sys/dev/ic/mpivar.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ic/mpivar.h b/sys/dev/ic/mpivar.h index 2147c64c05c..e3431224b53 100644 --- a/sys/dev/ic/mpivar.h +++ b/sys/dev/ic/mpivar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: mpivar.h,v 1.27 2010/01/03 06:36:50 dlg Exp $ */ +/* $OpenBSD: mpivar.h,v 1.28 2010/01/03 06:47:58 dlg Exp $ */ /* * Copyright (c) 2005 David Gwynne <dlg@openbsd.org> @@ -77,7 +77,7 @@ struct mpi_ccb { struct mpi_softc *ccb_sc; int ccb_id; - struct scsi_xfer *ccb_xs; + void *ccb_cookie; bus_dmamap_t ccb_dmamap; bus_addr_t ccb_offset; |