Module Name:    src
Committed By:   jym
Date:           Sat Nov 27 17:42:04 UTC 2010

Modified Files:
        src/sys/dev/mii: brgphy.c

Log Message:
Use device_private() instead of casting softc to (void *).


To generate a diff of this commit:
cvs rdiff -u -r1.55 -r1.56 src/sys/dev/mii/brgphy.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.55 src/sys/dev/mii/brgphy.c:1.56
--- src/sys/dev/mii/brgphy.c:1.55	Sun May  2 13:49:17 2010
+++ src/sys/dev/mii/brgphy.c	Sat Nov 27 17:42:04 2010
@@ -1,4 +1,4 @@
-/*	$NetBSD: brgphy.c,v 1.55 2010/05/02 13:49:17 pgoyette Exp $	*/
+/*	$NetBSD: brgphy.c,v 1.56 2010/11/27 17:42:04 jym Exp $	*/
 
 /*-
  * Copyright (c) 1998, 1999, 2000, 2001 The NetBSD Foundation, Inc.
@@ -62,7 +62,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: brgphy.c,v 1.55 2010/05/02 13:49:17 pgoyette Exp $");
+__KERNEL_RCSID(0, "$NetBSD: brgphy.c,v 1.56 2010/11/27 17:42:04 jym Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -519,7 +519,7 @@
 static void
 brgphy_reset(struct mii_softc *sc)
 {
-	struct brgphy_softc *bsc = (void *)sc;
+	struct brgphy_softc *bsc = device_private(sc->mii_dev);
 
 	mii_phy_reset(sc);
 

Reply via email to