Cosmetics. Silence gcc -Wall. Much more to do here :-(

This commit is contained in:
Poul-Henning Kamp
1994-10-10 01:12:27 +00:00
parent e81c2e89d8
commit 702c623a8a
7 changed files with 23 additions and 26 deletions
+4 -4
View File
@@ -40,7 +40,7 @@
* SUCH DAMAGE.
*
* from: @(#)fd.c 7.4 (Berkeley) 5/25/91
* $Id: fd.c,v 1.31 1994/09/17 18:08:36 joerg Exp $
* $Id: fd.c,v 1.32 1994/09/25 06:04:21 phk Exp $
*
*/
@@ -718,8 +718,8 @@ fdstrategy(struct buf *bp)
#endif
if (!(bp->b_flags & B_FORMAT)) {
if ((fdu >= NFD) || (bp->b_blkno < 0)) {
printf("fdstrat: fdu = %d, blkno = %d, bcount = %d\n",
fdu, bp->b_blkno, bp->b_bcount);
printf("fdstrat: fdu = %d, blkno = %lu, bcount = %ld\n",
fdu, (u_long)bp->b_blkno, bp->b_bcount);
bp->b_error = EINVAL;
bp->b_flags |= B_ERROR;
goto bad;
@@ -1255,7 +1255,7 @@ retrier(fdcu)
printf(" (ST0 %b ", fdc->status[0], NE7_ST0BITS);
printf(" ST1 %b ", fdc->status[1], NE7_ST1BITS);
printf(" ST2 %b ", fdc->status[2], NE7_ST2BITS);
printf("cyl %d hd %d sec %d)\n",
printf("cyl %ld hd %ld sec %ld)\n",
fdc->status[3], fdc->status[4], fdc->status[5]);
}
bp->b_flags |= B_ERROR;
+5 -7
View File
@@ -12,7 +12,7 @@
* on the understanding that TFS is not responsible for the correct
* functioning of this software in any circumstances.
*
* $Id: aha1542.c,v 1.34 1994/08/27 16:14:16 davidg Exp $
* $Id: aha1542.c,v 1.35 1994/09/21 18:17:56 davidg Exp $
*/
/*
@@ -356,6 +356,10 @@ static int ahaunit = 0;
outb(AHA_CMD_DATA_PORT, AHA_START_SCSI);
#define AHA_RESET_TIMEOUT 2000 /* time to wait for reset (mSec) */
int aha_poll __P((int, struct scsi_xfer *, struct aha_ccb *));
int aha_init __P((int));
#ifndef KERNEL
main()
{
@@ -762,7 +766,6 @@ aha_done(unit, ccb)
int unit;
struct aha_ccb *ccb;
{
struct aha_data *aha = ahadata[unit];
struct scsi_sense_data *s1, *s2;
struct scsi_xfer *xs = ccb->xfer;
@@ -1063,16 +1066,12 @@ aha_scsi_cmd(xs)
struct scsi_link *sc_link = xs->sc_link;
int unit = sc_link->adapter_unit;
struct aha_data *aha = ahadata[unit];
struct scsi_sense_data *s1, *s2;
struct aha_ccb *ccb;
struct aha_scat_gath *sg;
int seg; /* scatter gather seg being worked on */
int i = 0;
int rc = 0;
int thiskv;
int thisphys, nextphys;
int bytes_this_seg, bytes_this_page, datalen, flags;
struct iovec *iovp;
int s;
SC_DEBUG(xs->sc_link, SDEV_DB2, ("aha_scsi_cmd\n"));
@@ -1243,7 +1242,6 @@ aha_poll(unit, xs, ccb)
struct aha_ccb *ccb;
{
struct aha_data *aha = ahadata[unit];
int done = 0;
int count = xs->timeout;
u_char stat;
+4 -4
View File
@@ -40,7 +40,7 @@
* SUCH DAMAGE.
*
* from: @(#)fd.c 7.4 (Berkeley) 5/25/91
* $Id: fd.c,v 1.31 1994/09/17 18:08:36 joerg Exp $
* $Id: fd.c,v 1.32 1994/09/25 06:04:21 phk Exp $
*
*/
@@ -718,8 +718,8 @@ fdstrategy(struct buf *bp)
#endif
if (!(bp->b_flags & B_FORMAT)) {
if ((fdu >= NFD) || (bp->b_blkno < 0)) {
printf("fdstrat: fdu = %d, blkno = %d, bcount = %d\n",
fdu, bp->b_blkno, bp->b_bcount);
printf("fdstrat: fdu = %d, blkno = %lu, bcount = %ld\n",
fdu, (u_long)bp->b_blkno, bp->b_bcount);
bp->b_error = EINVAL;
bp->b_flags |= B_ERROR;
goto bad;
@@ -1255,7 +1255,7 @@ retrier(fdcu)
printf(" (ST0 %b ", fdc->status[0], NE7_ST0BITS);
printf(" ST1 %b ", fdc->status[1], NE7_ST1BITS);
printf(" ST2 %b ", fdc->status[2], NE7_ST2BITS);
printf("cyl %d hd %d sec %d)\n",
printf("cyl %ld hd %ld sec %ld)\n",
fdc->status[3], fdc->status[4], fdc->status[5]);
}
bp->b_flags |= B_ERROR;
+2 -2
View File
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* from: @(#)fd.c 7.4 (Berkeley) 5/25/91
* $Id: fdc.h,v 1.2 1994/02/14 22:24:25 nate Exp $
* $Id: fdc.h,v 1.3 1994/09/17 16:56:07 davidg Exp $
*
*/
@@ -53,7 +53,7 @@ struct fdc_data
int state;
int retry;
int fdout; /* mirror of the w/o digital output reg */
int status[7]; /* copy of the registers */
u_long status[7]; /* copy of the registers */
struct buf head; /* Head of buf chain */
};
+2 -3
View File
@@ -46,7 +46,7 @@
* SUCH DAMAGE.
*
* from: unknown origin, 386BSD 0.1
* $Id: lpt.c,v 1.18 1994/09/15 02:37:11 phk Exp $
* $Id: lpt.c,v 1.19 1994/09/18 06:12:45 phk Exp $
*/
/*
@@ -654,7 +654,7 @@ lptwrite(dev_t dev, struct uio * uio)
}
sc->sc_state &= ~INTERRUPTED;
while (n = min(BUFSIZE, uio->uio_resid)) {
while ((n = min(BUFSIZE, uio->uio_resid)) != 0) {
sc->sc_cp = sc->sc_inbuf->b_un.b_addr ;
uiomove(sc->sc_cp, n, uio);
sc->sc_xfercnt = n ;
@@ -841,7 +841,6 @@ lpinittables()
static int
lpioctl(struct ifnet *ifp, int cmd, caddr_t data)
{
struct proc *p = curproc;
struct lpt_softc *sc = lpt_sc + ifp->if_unit;
struct ifaddr *ifa = (struct ifaddr *)data;
struct ifreq *ifr = (struct ifreq *)data;
+4 -4
View File
@@ -40,7 +40,7 @@
* SUCH DAMAGE.
*
* from: @(#)fd.c 7.4 (Berkeley) 5/25/91
* $Id: fd.c,v 1.31 1994/09/17 18:08:36 joerg Exp $
* $Id: fd.c,v 1.32 1994/09/25 06:04:21 phk Exp $
*
*/
@@ -718,8 +718,8 @@ fdstrategy(struct buf *bp)
#endif
if (!(bp->b_flags & B_FORMAT)) {
if ((fdu >= NFD) || (bp->b_blkno < 0)) {
printf("fdstrat: fdu = %d, blkno = %d, bcount = %d\n",
fdu, bp->b_blkno, bp->b_bcount);
printf("fdstrat: fdu = %d, blkno = %lu, bcount = %ld\n",
fdu, (u_long)bp->b_blkno, bp->b_bcount);
bp->b_error = EINVAL;
bp->b_flags |= B_ERROR;
goto bad;
@@ -1255,7 +1255,7 @@ retrier(fdcu)
printf(" (ST0 %b ", fdc->status[0], NE7_ST0BITS);
printf(" ST1 %b ", fdc->status[1], NE7_ST1BITS);
printf(" ST2 %b ", fdc->status[2], NE7_ST2BITS);
printf("cyl %d hd %d sec %d)\n",
printf("cyl %ld hd %ld sec %ld)\n",
fdc->status[3], fdc->status[4], fdc->status[5]);
}
bp->b_flags |= B_ERROR;
+2 -2
View File
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* from: @(#)fd.c 7.4 (Berkeley) 5/25/91
* $Id: fdc.h,v 1.2 1994/02/14 22:24:25 nate Exp $
* $Id: fdc.h,v 1.3 1994/09/17 16:56:07 davidg Exp $
*
*/
@@ -53,7 +53,7 @@ struct fdc_data
int state;
int retry;
int fdout; /* mirror of the w/o digital output reg */
int status[7]; /* copy of the registers */
u_long status[7]; /* copy of the registers */
struct buf head; /* Head of buf chain */
};