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

Modified Files:
        src/sys/dev/i2o: dpti.c iopsp.c

Log Message:
struct cfdata * -> cfdata_t, no functional changes intended.


To generate a diff of this commit:
cvs rdiff -u -r1.40 -r1.41 src/sys/dev/i2o/dpti.c
cvs rdiff -u -r1.33 -r1.34 src/sys/dev/i2o/iopsp.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/i2o/dpti.c
diff -u src/sys/dev/i2o/dpti.c:1.40 src/sys/dev/i2o/dpti.c:1.41
--- src/sys/dev/i2o/dpti.c:1.40	Mon Sep  8 23:36:54 2008
+++ src/sys/dev/i2o/dpti.c	Tue May 12 12:14:18 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: dpti.c,v 1.40 2008/09/08 23:36:54 gmcgarry Exp $	*/
+/*	$NetBSD: dpti.c,v 1.41 2009/05/12 12:14:18 cegger Exp $	*/
 
 /*-
  * Copyright (c) 2001, 2007 The NetBSD Foundation, Inc.
@@ -57,7 +57,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: dpti.c,v 1.40 2008/09/08 23:36:54 gmcgarry Exp $");
+__KERNEL_RCSID(0, "$NetBSD: dpti.c,v 1.41 2009/05/12 12:14:18 cegger Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -131,7 +131,7 @@
 void	dpti_attach(struct device *, struct device *, void *);
 int	dpti_blinkled(struct dpti_softc *);
 int	dpti_ctlrinfo(struct dpti_softc *, int, void *);
-int	dpti_match(struct device *, struct cfdata *, void *);
+int	dpti_match(struct device *, cfdata_t, void *);
 int	dpti_passthrough(struct dpti_softc *, void *, struct proc *);
 int	dpti_sysinfo(struct dpti_softc *, int, void *);
 
@@ -149,7 +149,7 @@
     dpti_match, dpti_attach, NULL, NULL);
 
 int
-dpti_match(struct device *parent, struct cfdata *match, void *aux)
+dpti_match(struct device *parent, cfdata_t match, void *aux)
 {
 	struct iop_attach_args *ia;
 	struct iop_softc *iop;

Index: src/sys/dev/i2o/iopsp.c
diff -u src/sys/dev/i2o/iopsp.c:1.33 src/sys/dev/i2o/iopsp.c:1.34
--- src/sys/dev/i2o/iopsp.c:1.33	Mon Sep  8 23:36:54 2008
+++ src/sys/dev/i2o/iopsp.c	Tue May 12 12:14:18 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: iopsp.c,v 1.33 2008/09/08 23:36:54 gmcgarry Exp $	*/
+/*	$NetBSD: iopsp.c,v 1.34 2009/05/12 12:14:18 cegger Exp $	*/
 
 /*-
  * Copyright (c) 2000, 2001, 2007 The NetBSD Foundation, Inc.
@@ -35,7 +35,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: iopsp.c,v 1.33 2008/09/08 23:36:54 gmcgarry Exp $");
+__KERNEL_RCSID(0, "$NetBSD: iopsp.c,v 1.34 2009/05/12 12:14:18 cegger Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -67,7 +67,7 @@
 static void	iopsp_intr(struct device *, struct iop_msg *, void *);
 static int	iopsp_ioctl(struct scsipi_channel *, u_long,
 			    void *, int, struct proc *);
-static int	iopsp_match(struct device *, struct cfdata *, void *);
+static int	iopsp_match(struct device *, cfdata_t, void *);
 static int	iopsp_rescan(struct iopsp_softc *);
 static int	iopsp_reconfig(struct device *);
 static void	iopsp_scsipi_request(struct scsipi_channel *,
@@ -80,7 +80,7 @@
  * Match a supported device.
  */
 static int
-iopsp_match(struct device *parent, struct cfdata *match, void *aux)
+iopsp_match(struct device *parent, cfdata_t match, void *aux)
 {
 	struct iop_attach_args *ia;
 	struct {

Reply via email to