Module Name: src
Committed By: cegger
Date: Tue May 12 13:16:45 UTC 2009
Modified Files:
src/sys/dev/mvme: clmpcc_pcctwo.c clock_pcctwo.c if_ie_mvme.c
Log Message:
struct cfdata * -> cfdata_t, no functional changes intended.
To generate a diff of this commit:
cvs rdiff -u -r1.16 -r1.17 src/sys/dev/mvme/clmpcc_pcctwo.c
cvs rdiff -u -r1.14 -r1.15 src/sys/dev/mvme/clock_pcctwo.c \
src/sys/dev/mvme/if_ie_mvme.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/dev/mvme/clmpcc_pcctwo.c
diff -u src/sys/dev/mvme/clmpcc_pcctwo.c:1.16 src/sys/dev/mvme/clmpcc_pcctwo.c:1.17
--- src/sys/dev/mvme/clmpcc_pcctwo.c:1.16 Sat Mar 14 15:36:19 2009
+++ src/sys/dev/mvme/clmpcc_pcctwo.c Tue May 12 13:16:45 2009
@@ -1,4 +1,4 @@
-/* $NetBSD: clmpcc_pcctwo.c,v 1.16 2009/03/14 15:36:19 dsl Exp $ */
+/* $NetBSD: clmpcc_pcctwo.c,v 1.17 2009/05/12 13:16:45 cegger Exp $ */
/*-
* Copyright (c) 1999, 2002 The NetBSD Foundation, Inc.
@@ -34,7 +34,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: clmpcc_pcctwo.c,v 1.16 2009/03/14 15:36:19 dsl Exp $");
+__KERNEL_RCSID(0, "$NetBSD: clmpcc_pcctwo.c,v 1.17 2009/05/12 13:16:45 cegger Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -68,7 +68,7 @@
/* Definition of the driver for autoconfig. */
-int clmpcc_pcctwo_match(struct device *, struct cfdata *, void *);
+int clmpcc_pcctwo_match(struct device *, cfdata_t, void *);
void clmpcc_pcctwo_attach(struct device *, struct device *, void *);
void clmpcc_pcctwo_iackhook(struct clmpcc_softc *, int);
void clmpcc_pcctwo_consiackhook(struct clmpcc_softc *, int);
@@ -90,7 +90,7 @@
* Is the CD2401 chip present?
*/
int
-clmpcc_pcctwo_match(struct device *parent, struct cfdata *cf, void *aux)
+clmpcc_pcctwo_match(struct device *parent, cfdata_t cf, void *aux)
{
struct pcctwo_attach_args *pa;
Index: src/sys/dev/mvme/clock_pcctwo.c
diff -u src/sys/dev/mvme/clock_pcctwo.c:1.14 src/sys/dev/mvme/clock_pcctwo.c:1.15
--- src/sys/dev/mvme/clock_pcctwo.c:1.14 Sat Mar 14 15:36:19 2009
+++ src/sys/dev/mvme/clock_pcctwo.c Tue May 12 13:16:45 2009
@@ -1,4 +1,4 @@
-/* $NetBSD: clock_pcctwo.c,v 1.14 2009/03/14 15:36:19 dsl Exp $ */
+/* $NetBSD: clock_pcctwo.c,v 1.15 2009/05/12 13:16:45 cegger Exp $ */
/*-
* Copyright (c) 1999, 2002 The NetBSD Foundation, Inc.
@@ -36,7 +36,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: clock_pcctwo.c,v 1.14 2009/03/14 15:36:19 dsl Exp $");
+__KERNEL_RCSID(0, "$NetBSD: clock_pcctwo.c,v 1.15 2009/05/12 13:16:45 cegger Exp $");
#include <sys/param.h>
#include <sys/kernel.h>
@@ -52,7 +52,7 @@
#include <dev/mvme/pcctworeg.h>
-int clock_pcctwo_match(struct device *, struct cfdata *, void *);
+int clock_pcctwo_match(struct device *, cfdata_t, void *);
void clock_pcctwo_attach(struct device *, struct device *, void *);
struct clock_pcctwo_softc {
@@ -78,7 +78,7 @@
/* ARGSUSED */
int
-clock_pcctwo_match(struct device *parent, struct cfdata *cf, void *aux)
+clock_pcctwo_match(struct device *parent, cfdata_t cf, void *aux)
{
struct pcctwo_attach_args *pa = aux;
Index: src/sys/dev/mvme/if_ie_mvme.c
diff -u src/sys/dev/mvme/if_ie_mvme.c:1.14 src/sys/dev/mvme/if_ie_mvme.c:1.15
--- src/sys/dev/mvme/if_ie_mvme.c:1.14 Sat Mar 14 15:36:19 2009
+++ src/sys/dev/mvme/if_ie_mvme.c Tue May 12 13:16:45 2009
@@ -1,4 +1,4 @@
-/* $NetBSD: if_ie_mvme.c,v 1.14 2009/03/14 15:36:19 dsl Exp $ */
+/* $NetBSD: if_ie_mvme.c,v 1.15 2009/05/12 13:16:45 cegger Exp $ */
/*-
* Copyright (c) 1999, 2002 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_ie_mvme.c,v 1.14 2009/03/14 15:36:19 dsl Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_ie_mvme.c,v 1.15 2009/05/12 13:16:45 cegger Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -60,7 +60,7 @@
#include <dev/mvme/pcctworeg.h>
-int ie_pcctwo_match(struct device *, struct cfdata *, void *);
+int ie_pcctwo_match(struct device *, cfdata_t, void *);
void ie_pcctwo_attach(struct device *, struct device *, void *);
struct ie_pcctwo_softc {
@@ -220,7 +220,7 @@
/* ARGSUSED */
int
-ie_pcctwo_match(struct device *parent, struct cfdata *cf, void *args)
+ie_pcctwo_match(struct device *parent, cfdata_t cf, void *args)
{
struct pcctwo_attach_args *pa;