Module Name: src Committed By: msaitoh Date: Wed Apr 8 03:01:58 UTC 2020
Modified Files: src/sys/dev/mii: rdcphy.c Log Message: Add two new RDC PHYs from Andrius V. To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 src/sys/dev/mii/rdcphy.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/rdcphy.c diff -u src/sys/dev/mii/rdcphy.c:1.7 src/sys/dev/mii/rdcphy.c:1.8 --- src/sys/dev/mii/rdcphy.c:1.7 Sun Mar 15 23:04:50 2020 +++ src/sys/dev/mii/rdcphy.c Wed Apr 8 03:01:58 2020 @@ -1,4 +1,4 @@ -/* $NetBSD: rdcphy.c,v 1.7 2020/03/15 23:04:50 thorpej Exp $ */ +/* $NetBSD: rdcphy.c,v 1.8 2020/04/08 03:01:58 msaitoh Exp $ */ /*- * Copyright (c) 2010, Pyun YongHyeon <yong...@freebsd.org> @@ -33,7 +33,7 @@ * Driver for the RDC Semiconductor R6040 10/100 PHY. */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: rdcphy.c,v 1.7 2020/03/15 23:04:50 thorpej Exp $"); +__KERNEL_RCSID(0, "$NetBSD: rdcphy.c,v 1.8 2020/04/08 03:01:58 msaitoh Exp $"); #include <sys/param.h> #include <sys/systm.h> @@ -75,6 +75,8 @@ static const struct mii_phy_funcs rdcphy static const struct mii_phydesc rdcphys[] = { MII_PHY_DESC(xxRDC, R6040), + MII_PHY_DESC(xxRDC, R6040_2), + MII_PHY_DESC(xxRDC, R6040_3), MII_PHY_END, };