Module Name: src Committed By: cegger Date: Mon May 4 12:38:51 UTC 2009
Modified Files: src/sys/arch/i386/isa: npx_isa.c Log Message: struct cfdata * -> cfdata_t To generate a diff of this commit: cvs rdiff -u -r1.20 -r1.21 src/sys/arch/i386/isa/npx_isa.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/arch/i386/isa/npx_isa.c diff -u src/sys/arch/i386/isa/npx_isa.c:1.20 src/sys/arch/i386/isa/npx_isa.c:1.21 --- src/sys/arch/i386/isa/npx_isa.c:1.20 Thu Apr 2 00:09:32 2009 +++ src/sys/arch/i386/isa/npx_isa.c Mon May 4 12:38:51 2009 @@ -1,4 +1,4 @@ -/* $NetBSD: npx_isa.c,v 1.20 2009/04/02 00:09:32 dyoung Exp $ */ +/* $NetBSD: npx_isa.c,v 1.21 2009/05/04 12:38:51 cegger Exp $ */ /*- * Copyright (c) 1991 The Regents of the University of California. @@ -67,7 +67,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: npx_isa.c,v 1.20 2009/04/02 00:09:32 dyoung Exp $"); +__KERNEL_RCSID(0, "$NetBSD: npx_isa.c,v 1.21 2009/05/04 12:38:51 cegger Exp $"); #include <sys/param.h> #include <sys/systm.h> @@ -83,7 +83,7 @@ #include <i386/isa/npxvar.h> -int npx_isa_probe(device_t, struct cfdata *, void *); +int npx_isa_probe(device_t, cfdata_t, void *); void npx_isa_attach(device_t, device_t, void *); CFATTACH_DECL3_NEW(npx_isa, sizeof(struct npx_softc), @@ -91,7 +91,7 @@ DVF_DETACH_SHUTDOWN); int -npx_isa_probe(device_t parent, struct cfdata *match, void *aux) +npx_isa_probe(device_t parent, cfdata_t match, void *aux) { struct isa_attach_args *ia = aux; bus_space_handle_t ioh;