summaryrefslogtreecommitdiff
path: root/sys/dev/ic/mpivar.h
diff options
context:
space:
mode:
authorDavid Gwynne <dlg@cvs.openbsd.org>2006-06-01 21:32:16 +0000
committerDavid Gwynne <dlg@cvs.openbsd.org>2006-06-01 21:32:16 +0000
commit81eb534391226922b3a62e3683dd3f9adc73182e (patch)
tree27db9e0cd3b9675fe4a7b61d14ce4371a6e80691 /sys/dev/ic/mpivar.h
parent1ca75a8186dffae1436a988a506991f6aac65110 (diff)
leave the reply_dva address alone so we can post it back to the ioc rather
than posting back the offset of the reply frame to the start of the reply space. nobody likes panics, even if theyre free.
Diffstat (limited to 'sys/dev/ic/mpivar.h')
-rw-r--r--sys/dev/ic/mpivar.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ic/mpivar.h b/sys/dev/ic/mpivar.h
index 0abda114695..29eb1caff41 100644
--- a/sys/dev/ic/mpivar.h
+++ b/sys/dev/ic/mpivar.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: mpivar.h,v 1.6 2006/06/01 04:36:19 dlg Exp $ */
+/* $OpenBSD: mpivar.h,v 1.7 2006/06/01 21:32:15 dlg Exp $ */
/*
* Copyright (c) 2005 David Gwynne <dlg@openbsd.org>
@@ -63,7 +63,7 @@ struct mpi_ccb {
} ccb_state;
void (*ccb_done)(struct mpi_ccb *);
void *ccb_reply;
- paddr_t ccb_reply_dva;
+ u_int32_t ccb_reply_dva;
TAILQ_ENTRY(mpi_ccb) ccb_link;
};