Module Name:    src
Committed By:   msaitoh
Date:           Sun Apr 19 10:47:48 UTC 2009

Modified Files:
        src/sys/dev/mii: miivar.h

Log Message:
Add mii_mpd_rev to keep MII PHY revision.


To generate a diff of this commit:
cvs rdiff -u -r1.53 -r1.54 src/sys/dev/mii/miivar.h

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/miivar.h
diff -u src/sys/dev/mii/miivar.h:1.53 src/sys/dev/mii/miivar.h:1.54
--- src/sys/dev/mii/miivar.h:1.53	Fri Jan 16 20:51:18 2009
+++ src/sys/dev/mii/miivar.h	Sun Apr 19 10:47:48 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: miivar.h,v 1.53 2009/01/16 20:51:18 cegger Exp $	*/
+/*	$NetBSD: miivar.h,v 1.54 2009/04/19 10:47:48 msaitoh Exp $	*/
 
 /*-
  * Copyright (c) 1998, 1999, 2000, 2001 The NetBSD Foundation, Inc.
@@ -110,7 +110,8 @@
 
 	LIST_ENTRY(mii_softc) mii_list;	/* entry on parent's PHY list */
 
-	u_int32_t mii_mpd_model;	/* the PHY's model (MII_MODEL())*/
+	uint32_t mii_mpd_model;		/* the PHY's model (MII_MODEL())*/
+	uint32_t mii_mpd_rev;		/* the PHY's revision (MII_REV())*/
 	int mii_phy;			/* our MII address */
 	int mii_offset;			/* first PHY, second PHY, etc. */
 	u_int mii_inst;			/* instance for ifmedia */

Reply via email to