diff options
Diffstat (limited to 'sys/dev/sbus/isp_sbus.c')
-rw-r--r-- | sys/dev/sbus/isp_sbus.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/sbus/isp_sbus.c b/sys/dev/sbus/isp_sbus.c index 4c30067df86..391f8bfd1b5 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.3 2002/05/17 01:19:49 mjacob Exp $ */ +/* $OpenBSD: isp_sbus.c,v 1.4 2002/10/12 01:09:44 krw Exp $ */ /* $NetBSD: isp_sbus.c,v 1.46 2001/09/26 20:53:14 eeh Exp $ */ /* @@ -525,7 +525,7 @@ isp_sbus_dmasetup(struct ispsoftc *isp, XS_T *xs, ispreq_t *rq, dmap = sbc->sbus_dmamap[isp_handle_index(rq->req_handle)]; if (dmap->dm_nsegs != 0) { - panic("%s: dma map already allocated\n", isp->isp_name); + panic("%s: dma map already allocated", isp->isp_name); /* NOTREACHED */ } if (bus_dmamap_load(isp->isp_dmatag, dmap, xs->data, xs->datalen, @@ -590,7 +590,7 @@ isp_sbus_dmateardown(struct ispsoftc *isp, XS_T *xs, u_int16_t handle) dmap = sbc->sbus_dmamap[isp_handle_index(handle)]; if (dmap->dm_nsegs == 0) { - panic("%s: dma map not already allocated\n", isp->isp_name); + panic("%s: dma map not already allocated", isp->isp_name); /* NOTREACHED */ } bus_dmamap_sync(isp->isp_dmatag, dmap, 0, |