Module Name: src
Committed By: cegger
Date: Tue May 12 13:16:02 UTC 2009
Modified Files:
src/sys/dev/mii: brgphy.c ciphy.c
Log Message:
struct cfdata * -> cfdata_t, no functional changes intended.
To generate a diff of this commit:
cvs rdiff -u -r1.44 -r1.45 src/sys/dev/mii/brgphy.c
cvs rdiff -u -r1.17 -r1.18 src/sys/dev/mii/ciphy.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/mii/brgphy.c
diff -u src/sys/dev/mii/brgphy.c:1.44 src/sys/dev/mii/brgphy.c:1.45
--- src/sys/dev/mii/brgphy.c:1.44 Thu Apr 23 10:47:43 2009
+++ src/sys/dev/mii/brgphy.c Tue May 12 13:16:02 2009
@@ -1,4 +1,4 @@
-/* $NetBSD: brgphy.c,v 1.44 2009/04/23 10:47:43 msaitoh Exp $ */
+/* $NetBSD: brgphy.c,v 1.45 2009/05/12 13:16:02 cegger Exp $ */
/*-
* Copyright (c) 1998, 1999, 2000, 2001 The NetBSD Foundation, Inc.
@@ -67,7 +67,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: brgphy.c,v 1.44 2009/04/23 10:47:43 msaitoh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: brgphy.c,v 1.45 2009/05/12 13:16:02 cegger Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -187,7 +187,7 @@
};
static int
-brgphymatch(struct device *parent, struct cfdata *match,
+brgphymatch(struct device *parent, cfdata_t match,
void *aux)
{
struct mii_attach_args *ma = aux;
Index: src/sys/dev/mii/ciphy.c
diff -u src/sys/dev/mii/ciphy.c:1.17 src/sys/dev/mii/ciphy.c:1.18
--- src/sys/dev/mii/ciphy.c:1.17 Sat Mar 14 15:36:18 2009
+++ src/sys/dev/mii/ciphy.c Tue May 12 13:16:02 2009
@@ -1,4 +1,4 @@
-/* $NetBSD: ciphy.c,v 1.17 2009/03/14 15:36:18 dsl Exp $ */
+/* $NetBSD: ciphy.c,v 1.18 2009/05/12 13:16:02 cegger Exp $ */
/*-
* Copyright (c) 2004
@@ -35,7 +35,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ciphy.c,v 1.17 2009/03/14 15:36:18 dsl Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ciphy.c,v 1.18 2009/05/12 13:16:02 cegger Exp $");
/*
* Driver for the Cicada CS8201 10/100/1000 copper PHY.
@@ -97,7 +97,7 @@
};
static int
-ciphymatch(struct device *parent, struct cfdata *match,
+ciphymatch(struct device *parent, cfdata_t match,
void *aux)
{
struct mii_attach_args *ma = aux;