diff options
Diffstat (limited to 'sys/arch/pc532/pc532/disksubr.c')
-rw-r--r-- | sys/arch/pc532/pc532/disksubr.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/arch/pc532/pc532/disksubr.c b/sys/arch/pc532/pc532/disksubr.c index 397a7fc9dd3..b133d15a577 100644 --- a/sys/arch/pc532/pc532/disksubr.c +++ b/sys/arch/pc532/pc532/disksubr.c @@ -198,7 +198,11 @@ done: * if needed, and signal errors or early completion. */ int -bounds_check_with_label(struct buf *bp, struct disklabel *lp, int wlabel) +bounds_check_with_label(bp, lp, osdep, wlabel) + struct buf *bp; + struct disklabel *lp; + struct cpu_disklabel *osdep; + int wlabel; { struct partition *p = lp->d_partitions + dkpart(bp->b_dev); int maxsz = p->p_size, |