Module Name:    src
Committed By:   cegger
Date:           Tue May  5 12:10:07 UTC 2009

Modified Files:
        src/sys/dev/isapnp: ess_isapnp.c

Log Message:
struct device * -> device_t


To generate a diff of this commit:
cvs rdiff -u -r1.19 -r1.20 src/sys/dev/isapnp/ess_isapnp.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/isapnp/ess_isapnp.c
diff -u src/sys/dev/isapnp/ess_isapnp.c:1.19 src/sys/dev/isapnp/ess_isapnp.c:1.20
--- src/sys/dev/isapnp/ess_isapnp.c:1.19	Tue Apr  8 20:09:27 2008
+++ src/sys/dev/isapnp/ess_isapnp.c	Tue May  5 12:10:07 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: ess_isapnp.c,v 1.19 2008/04/08 20:09:27 cegger Exp $	*/
+/*	$NetBSD: ess_isapnp.c,v 1.20 2009/05/05 12:10:07 cegger Exp $	*/
 
 /*
  * Copyright (c) 1991-1993 Regents of the University of California.
@@ -35,7 +35,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ess_isapnp.c,v 1.19 2008/04/08 20:09:27 cegger Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ess_isapnp.c,v 1.20 2009/05/05 12:10:07 cegger Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -61,8 +61,8 @@
 #include <dev/isa/essreg.h>
 #include <dev/isa/essvar.h>
 
-int	ess_isapnp_match(struct device *, struct cfdata *, void *);
-void	ess_isapnp_attach(struct device *, struct device *, void *);
+int	ess_isapnp_match(device_t, cfdata_t, void *);
+void	ess_isapnp_attach(device_t, device_t, void *);
 
 CFATTACH_DECL(ess_isapnp, sizeof(struct ess_softc),
     ess_isapnp_match, ess_isapnp_attach, NULL, NULL);
@@ -75,8 +75,7 @@
  * Probe for the ess hardware.
  */
 int
-ess_isapnp_match(struct device *parent, struct cfdata *match,
-    void *aux)
+ess_isapnp_match(device_t parent, cfdata_t match, void *aux)
 {
 	int pri, variant;
 
@@ -92,8 +91,7 @@
  * pseudo-device driver.
  */
 void
-ess_isapnp_attach(struct device *parent, struct device *self,
-    void *aux)
+ess_isapnp_attach(device_t parent, device_t self, void *aux)
 {
 	struct ess_softc *sc;
 	struct isapnp_attach_args *ipa;

Reply via email to