diff options
Diffstat (limited to 'sys/dev/ic/trm.c')
-rw-r--r-- | sys/dev/ic/trm.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/ic/trm.c b/sys/dev/ic/trm.c index 60e19b88c77..f0bdea5c58a 100644 --- a/sys/dev/ic/trm.c +++ b/sys/dev/ic/trm.c @@ -1,4 +1,4 @@ -/* $OpenBSD: trm.c,v 1.11 2009/01/21 21:54:00 grange Exp $ +/* $OpenBSD: trm.c,v 1.12 2009/02/16 21:19:07 miod Exp $ * ------------------------------------------------------------ * O.S : OpenBSD * File Name : trm.c @@ -61,7 +61,7 @@ /* #define TRM_DEBUG0 */ -void trm_minphys(struct buf *); +void trm_minphys(struct buf *, struct scsi_link *); void trm_initSRB(struct trm_scsi_req_q *); @@ -2367,7 +2367,7 @@ trm_linkSRB(struct trm_softc *sc) * ------------------------------------------------------------ */ void -trm_minphys(struct buf *bp) +trm_minphys(struct buf *bp, struct scsi_link *sl) { if (bp->b_bcount > (TRM_MAX_SG_LISTENTRY-1) * (long) NBPG) { bp->b_bcount = (TRM_MAX_SG_LISTENTRY-1) * (long) NBPG; |