Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/src/sys/dev/ieee1394/fwdev.c,v rcsdiff: /ftp/cvs/cvsroot/src/sys/dev/ieee1394/fwdev.c,v: warning: Unknown phrases like `commitid ...;' are present. retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- src/sys/dev/ieee1394/fwdev.c 2005/07/11 15:29:05 1.1 +++ src/sys/dev/ieee1394/fwdev.c 2005/07/20 15:11:57 1.2 @@ -1,4 +1,4 @@ -/* $NetBSD: fwdev.c,v 1.1 2005/07/11 15:29:05 kiyohara Exp $ */ +/* $NetBSD: fwdev.c,v 1.2 2005/07/20 15:11:57 drochner Exp $ */ /*- * Copyright (c) 2003 Hidetoshi Shimokawa * Copyright (c) 1998-2002 Katsushi Kobayashi and Hidetoshi Shimokawa @@ -334,7 +334,7 @@ fw_read_async(struct fw_drv1 *d, struct struct fw_xfer *xfer; struct fw_bind *fwb; struct fw_pkt *fp; - struct tcode_info *tinfo; + const struct tcode_info *tinfo; while ((xfer = STAILQ_FIRST(&d->rq)) == NULL && err == 0) err = tsleep(&d->rq, FWPRI, "fwra", 0); @@ -445,7 +445,7 @@ fw_write_async(struct fw_drv1 *d, struct { struct fw_xfer *xfer; struct fw_pkt pkt; - struct tcode_info *tinfo; + const struct tcode_info *tinfo; int err; bzero(&pkt, sizeof(struct fw_pkt)); @@ -679,7 +679,7 @@ FW_IOCTL(fw) break; case FW_ASYREQ: { - struct tcode_info *tinfo; + const struct tcode_info *tinfo; int pay_len = 0; fp = &asyreq->pkt;