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/isa/seagate.c,v rcsdiff: /ftp/cvs/cvsroot/src/sys/dev/isa/seagate.c,v: warning: Unknown phrases like `commitid ...;' are present. retrieving revision 1.68 retrieving revision 1.69 diff -u -p -r1.68 -r1.69 --- src/sys/dev/isa/seagate.c 2009/05/12 08:44:19 1.68 +++ src/sys/dev/isa/seagate.c 2009/05/12 09:10:15 1.69 @@ -1,4 +1,4 @@ -/* $NetBSD: seagate.c,v 1.68 2009/05/12 08:44:19 cegger Exp $ */ +/* $NetBSD: seagate.c,v 1.69 2009/05/12 09:10:15 cegger Exp $ */ /* * ST01/02, Future Domain TMC-885, TMC-950 SCSI driver @@ -65,7 +65,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: seagate.c,v 1.68 2009/05/12 08:44:19 cegger Exp $"); +__KERNEL_RCSID(0, "$NetBSD: seagate.c,v 1.69 2009/05/12 09:10:15 cegger Exp $"); #include #include @@ -294,8 +294,8 @@ int sea_abort(struct sea_softc *, struct void sea_grow_scb(struct sea_softc *); -int seaprobe(struct device *, cfdata_t, void *); -void seaattach(struct device *, struct device *, void *); +int seaprobe(device_t, cfdata_t, void *); +void seaattach(device_t, device_t, void *); CFATTACH_DECL(sea, sizeof(struct sea_softc), seaprobe, seaattach, NULL, NULL); @@ -326,8 +326,7 @@ sea_queue_length(struct sea_softc *sea) * Returns 1 if card recognized, 0 if errors. */ int -seaprobe(struct device *parent, cfdata_t match, - void *aux) +seaprobe(device_t parent, cfdata_t match, void *aux) { struct isa_attach_args *ia = aux; int i, type = 0; @@ -385,7 +384,7 @@ seaprobe(struct device *parent, cfdata_t * Attach all sub-devices we can find */ void -seaattach(struct device *parent, struct device *self, void *aux) +seaattach(device_t parent, device_t self, void *aux) { struct isa_attach_args *ia = aux; struct sea_softc *sea = (void *)self;