From d25ce32e442c8f2dd84b4ab903f86c3ec399aec5 Mon Sep 17 00:00:00 2001 From: tsutsui Date: Sat, 12 Sep 2009 18:46:42 +0000 Subject: [PATCH] - fix warnings of printf(9) format and void pointer arithmetic - use DTYPE_HPIB for now instead of nonexistent DTYPE_GPIB --- sys/dev/gpib/rd.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/sys/dev/gpib/rd.c b/sys/dev/gpib/rd.c index 13419c0b31dc..cb2694f36e0d 100644 --- a/sys/dev/gpib/rd.c +++ b/sys/dev/gpib/rd.c @@ -1,4 +1,4 @@ -/* $NetBSD: rd.c,v 1.26 2009/05/12 14:21:58 cegger Exp $ */ +/* $NetBSD: rd.c,v 1.27 2009/09/12 18:46:42 tsutsui Exp $ */ /*- * Copyright (c) 1996-2003 The NetBSD Foundation, Inc. @@ -111,7 +111,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: rd.c,v 1.26 2009/05/12 14:21:58 cegger Exp $"); +__KERNEL_RCSID(0, "$NetBSD: rd.c,v 1.27 2009/09/12 18:46:42 tsutsui Exp $"); #include "rnd.h" @@ -597,7 +597,7 @@ rdstrategy(struct buf *bp) sc = device_lookup_private(&rd_cd, RDUNIT(bp->b_dev)); DPRINTF(RDB_FOLLOW, - ("rdstrategy(%p): dev %x, bn %" PRId64 ", bcount %ld, %c\n", + ("rdstrategy(%p): dev %" PRIx64 ", bn %" PRId64 ", bcount %d, %c\n", bp, bp->b_dev, bp->b_blkno, bp->b_bcount, (bp->b_flags & B_READ) ? 'R' : 'W')); @@ -1060,7 +1060,7 @@ rdgetdefaultlabel(struct rd_softc *sc, struct disklabel *lp) memset((void *)lp, 0, sizeof(struct disklabel)); - lp->d_type = DTYPE_GPIB; + lp->d_type = DTYPE_HPIB /* DTYPE_GPIB */; lp->d_secsize = DEV_BSIZE; lp->d_nsectors = rdidentinfo[type].ri_nbpt; lp->d_ntracks = rdidentinfo[type].ri_ntpc; @@ -1202,7 +1202,7 @@ rddump(dev_t dev, daddr_t blkno, void *va, size_t size) /* update block count */ totwrt -= nwrt; blkno += nwrt; - va += sectorsize * nwrt; + va = (char *)va + sectorsize * nwrt; } rddoingadump = 0; return (0);