Module Name:    src
Committed By:   cegger
Date:           Tue May 12 14:42:58 UTC 2009

Modified Files:
        src/sys/dev/podulebus: if_ea.c if_eb.c if_ei.c

Log Message:
struct device * -> device_t, no functional changes intended.


To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 src/sys/dev/podulebus/if_ea.c \
    src/sys/dev/podulebus/if_ei.c
cvs rdiff -u -r1.13 -r1.14 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.15 src/sys/dev/podulebus/if_ea.c:1.16
--- src/sys/dev/podulebus/if_ea.c:1.15	Tue May 12 13:18:40 2009
+++ src/sys/dev/podulebus/if_ea.c	Tue May 12 14:42:58 2009
@@ -1,4 +1,4 @@
-/* $NetBSD: if_ea.c,v 1.15 2009/05/12 13:18:40 cegger Exp $ */
+/* $NetBSD: if_ea.c,v 1.16 2009/05/12 14:42:58 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.15 2009/05/12 13:18:40 cegger Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_ea.c,v 1.16 2009/05/12 14:42:58 cegger Exp $");
 
 #include <sys/param.h>
 
@@ -71,8 +71,8 @@
  * prototypes
  */
 
-int eaprobe(struct device *, cfdata_t, void *);
-void eaattach(struct device *, struct device *, void *);
+int eaprobe(device_t, cfdata_t, void *);
+void eaattach(device_t, device_t, void *);
 
 /* driver structure for autoconf */
 
@@ -88,7 +88,7 @@
  */
 
 int
-eaprobe(struct device *parent, cfdata_t cf, void *aux)
+eaprobe(device_t parent, cfdata_t cf, void *aux)
 {
 	struct podulebus_attach_args *pa = aux;
 
@@ -101,7 +101,7 @@
  */
 
 void
-eaattach(struct device *parent, struct device *self, void *aux)
+eaattach(device_t parent, device_t self, void *aux)
 {
 	struct ea_softc *sc = device_private(self);
 	struct podulebus_attach_args *pa = aux;
Index: src/sys/dev/podulebus/if_ei.c
diff -u src/sys/dev/podulebus/if_ei.c:1.15 src/sys/dev/podulebus/if_ei.c:1.16
--- src/sys/dev/podulebus/if_ei.c:1.15	Tue May 12 13:18:40 2009
+++ src/sys/dev/podulebus/if_ei.c	Tue May 12 14:42:58 2009
@@ -1,4 +1,4 @@
-/* $NetBSD: if_ei.c,v 1.15 2009/05/12 13:18:40 cegger Exp $ */
+/* $NetBSD: if_ei.c,v 1.16 2009/05/12 14:42:58 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.15 2009/05/12 13:18:40 cegger Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_ei.c,v 1.16 2009/05/12 14:42:58 cegger Exp $");
 
 #include <sys/param.h>
 
@@ -69,8 +69,8 @@
 static void ei_write24(struct ie_softc *, int, int);
 
 /* autoconfiguration glue */
-static int ei_match(struct device *, cfdata_t, void *);
-static void ei_attach(struct device *, struct device *, void *);
+static int ei_match(device_t, cfdata_t, void *);
+static void ei_attach(device_t, device_t, void *);
 
 struct ei_softc {
 	struct	ie_softc sc_ie;
@@ -103,7 +103,7 @@
 }
 
 static int
-ei_match(struct device *parent, cfdata_t cf, void *aux)
+ei_match(device_t parent, cfdata_t cf, void *aux)
 {
 	struct podulebus_attach_args *pa = aux;
 
@@ -111,7 +111,7 @@
 }
 
 static void
-ei_attach(struct device *parent, struct device *self, void *aux)
+ei_attach(device_t parent, device_t self, void *aux)
 {
 	struct podulebus_attach_args *pa = aux;
 	struct ei_softc *sc = device_private(self);

Index: src/sys/dev/podulebus/if_eb.c
diff -u src/sys/dev/podulebus/if_eb.c:1.13 src/sys/dev/podulebus/if_eb.c:1.14
--- src/sys/dev/podulebus/if_eb.c:1.13	Tue May 12 13:18:40 2009
+++ src/sys/dev/podulebus/if_eb.c	Tue May 12 14:42:58 2009
@@ -1,4 +1,4 @@
-/* $NetBSD: if_eb.c,v 1.13 2009/05/12 13:18:40 cegger Exp $ */
+/* $NetBSD: if_eb.c,v 1.14 2009/05/12 14:42:58 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.13 2009/05/12 13:18:40 cegger Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_eb.c,v 1.14 2009/05/12 14:42:58 cegger Exp $");
 
 #include <sys/param.h>
 
@@ -71,8 +71,8 @@
  * prototypes
  */
 
-int ebprobe(struct device *, cfdata_t, void *);
-void ebattach(struct device *, struct device *, void *);
+int ebprobe(device_t, cfdata_t, void *);
+void ebattach(device_t, device_t, void *);
 
 /* driver structure for autoconf */
 
@@ -88,7 +88,7 @@
  */
 
 int
-ebprobe(struct device *parent, cfdata_t cf, void *aux)
+ebprobe(device_t parent, cfdata_t cf, void *aux)
 {
 	struct podulebus_attach_args *pa = aux;
 
@@ -101,7 +101,7 @@
  */
 
 void
-ebattach(struct device *parent, struct device *self, void *aux)
+ebattach(device_t parent, device_t self, void *aux)
 {
 	struct eb_softc *sc = device_private(self);
 	struct podulebus_attach_args *pa = aux;

Reply via email to