summaryrefslogtreecommitdiff
path: root/sys/dev/sbus
diff options
context:
space:
mode:
authormjacob <mjacob@cvs.openbsd.org>2002-05-17 01:19:50 +0000
committermjacob <mjacob@cvs.openbsd.org>2002-05-17 01:19:50 +0000
commitb3b1b4a7f19e760b6bd80050fc31b1e03168e2a1 (patch)
tree31621ae5af9b32fa80e059c5dc876bc748b48f9e /sys/dev/sbus
parentbb70e9f17a9a6c1b27a23dc4d7efbbac98604a36 (diff)
Handle the removal of 'const' from structure definition.
Diffstat (limited to 'sys/dev/sbus')
-rw-r--r--sys/dev/sbus/isp_sbus.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/dev/sbus/isp_sbus.c b/sys/dev/sbus/isp_sbus.c
index ce764d58fde..4c30067df86 100644
--- a/sys/dev/sbus/isp_sbus.c
+++ b/sys/dev/sbus/isp_sbus.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: isp_sbus.c,v 1.2 2001/12/14 02:51:12 mjacob Exp $ */
+/* $OpenBSD: isp_sbus.c,v 1.3 2002/05/17 01:19:49 mjacob Exp $ */
/* $NetBSD: isp_sbus.c,v 1.46 2001/09/26 20:53:14 eeh Exp $ */
/*
@@ -102,7 +102,7 @@ static struct ispmdvec mdvec = {
NULL,
NULL,
NULL,
- ISP_1000_RISC_CODE
+ (u_int16_t *) ISP_1000_RISC_CODE
};
struct isp_sbussoftc {
@@ -598,4 +598,3 @@ isp_sbus_dmateardown(struct ispsoftc *isp, XS_T *xs, u_int16_t handle)
BUS_DMASYNC_POSTREAD : BUS_DMASYNC_POSTWRITE);
bus_dmamap_unload(isp->isp_dmatag, dmap);
}
-/* %W% */