Module Name: src
Committed By: cegger
Date: Tue May 12 13:18:40 UTC 2009
Modified Files:
src/sys/dev/podulebus: if_ea.c if_eb.c if_ei.c
Log Message:
struct cfdata * -> cfdata_t, no functional changes intended.
To generate a diff of this commit:
cvs rdiff -u -r1.14 -r1.15 src/sys/dev/podulebus/if_ea.c \
src/sys/dev/podulebus/if_ei.c
cvs rdiff -u -r1.12 -r1.13 src/sys/dev/podulebus/if_eb.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/podulebus/if_ea.c
diff -u src/sys/dev/podulebus/if_ea.c:1.14 src/sys/dev/podulebus/if_ea.c:1.15
--- src/sys/dev/podulebus/if_ea.c:1.14 Sat Apr 5 20:08:52 2008
+++ src/sys/dev/podulebus/if_ea.c Tue May 12 13:18:40 2009
@@ -1,4 +1,4 @@
-/* $NetBSD: if_ea.c,v 1.14 2008/04/05 20:08:52 cegger Exp $ */
+/* $NetBSD: if_ea.c,v 1.15 2009/05/12 13:18:40 cegger Exp $ */
/*
* Copyright (c) 2000, 2001 Ben Harris
@@ -37,7 +37,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_ea.c,v 1.14 2008/04/05 20:08:52 cegger Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_ea.c,v 1.15 2009/05/12 13:18:40 cegger Exp $");
#include <sys/param.h>
@@ -71,7 +71,7 @@
* prototypes
*/
-int eaprobe(struct device *, struct cfdata *, void *);
+int eaprobe(struct device *, cfdata_t, void *);
void eaattach(struct device *, struct device *, void *);
/* driver structure for autoconf */
@@ -88,7 +88,7 @@
*/
int
-eaprobe(struct device *parent, struct cfdata *cf, void *aux)
+eaprobe(struct device *parent, cfdata_t cf, void *aux)
{
struct podulebus_attach_args *pa = aux;
Index: src/sys/dev/podulebus/if_ei.c
diff -u src/sys/dev/podulebus/if_ei.c:1.14 src/sys/dev/podulebus/if_ei.c:1.15
--- src/sys/dev/podulebus/if_ei.c:1.14 Sat Apr 5 20:08:52 2008
+++ src/sys/dev/podulebus/if_ei.c Tue May 12 13:18:40 2009
@@ -1,4 +1,4 @@
-/* $NetBSD: if_ei.c,v 1.14 2008/04/05 20:08:52 cegger Exp $ */
+/* $NetBSD: if_ei.c,v 1.15 2009/05/12 13:18:40 cegger Exp $ */
/*-
* Copyright (c) 2000, 2001 Ben Harris
@@ -36,7 +36,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_ei.c,v 1.14 2008/04/05 20:08:52 cegger Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_ei.c,v 1.15 2009/05/12 13:18:40 cegger Exp $");
#include <sys/param.h>
@@ -69,7 +69,7 @@
static void ei_write24(struct ie_softc *, int, int);
/* autoconfiguration glue */
-static int ei_match(struct device *, struct cfdata *, void *);
+static int ei_match(struct device *, cfdata_t, void *);
static void ei_attach(struct device *, struct device *, void *);
struct ei_softc {
@@ -103,7 +103,7 @@
}
static int
-ei_match(struct device *parent, struct cfdata *cf, void *aux)
+ei_match(struct device *parent, cfdata_t cf, void *aux)
{
struct podulebus_attach_args *pa = aux;
Index: src/sys/dev/podulebus/if_eb.c
diff -u src/sys/dev/podulebus/if_eb.c:1.12 src/sys/dev/podulebus/if_eb.c:1.13
--- src/sys/dev/podulebus/if_eb.c:1.12 Sat Apr 5 20:08:52 2008
+++ src/sys/dev/podulebus/if_eb.c Tue May 12 13:18:40 2009
@@ -1,4 +1,4 @@
-/* $NetBSD: if_eb.c,v 1.12 2008/04/05 20:08:52 cegger Exp $ */
+/* $NetBSD: if_eb.c,v 1.13 2009/05/12 13:18:40 cegger Exp $ */
/*
* Copyright (c) 2000, 2001 Ben Harris
@@ -37,7 +37,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_eb.c,v 1.12 2008/04/05 20:08:52 cegger Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_eb.c,v 1.13 2009/05/12 13:18:40 cegger Exp $");
#include <sys/param.h>
@@ -71,7 +71,7 @@
* prototypes
*/
-int ebprobe(struct device *, struct cfdata *, void *);
+int ebprobe(struct device *, cfdata_t, void *);
void ebattach(struct device *, struct device *, void *);
/* driver structure for autoconf */
@@ -88,7 +88,7 @@
*/
int
-ebprobe(struct device *parent, struct cfdata *cf, void *aux)
+ebprobe(struct device *parent, cfdata_t cf, void *aux)
{
struct podulebus_attach_args *pa = aux;