diff options
author | 2005-10-01 17:22:26 +0000 | |
---|---|---|
committer | 2005-10-01 17:22:26 +0000 | |
commit | 73ee43710a736128a4b70df7a792b2bec7a69499 (patch) | |
tree | d03d8309a2684ab6ee6605aac4c40c255c9a955f | |
parent | regen (diff) | |
download | wireguard-openbsd-73ee43710a736128a4b70df7a792b2bec7a69499.tar.xz wireguard-openbsd-73ee43710a736128a4b70df7a792b2bec7a69499.zip |
add Broadcom BCM5421K2
-rw-r--r-- | share/man/man4/brgphy.4 | 6 | ||||
-rw-r--r-- | sys/dev/mii/brgphy.c | 8 |
2 files changed, 8 insertions, 6 deletions
diff --git a/share/man/man4/brgphy.4 b/share/man/man4/brgphy.4 index eb447348062..27d57d33065 100644 --- a/share/man/man4/brgphy.4 +++ b/share/man/man4/brgphy.4 @@ -1,4 +1,4 @@ -.\" $OpenBSD: brgphy.4,v 1.14 2005/10/01 02:51:51 brad Exp $ +.\" $OpenBSD: brgphy.4,v 1.15 2005/10/01 17:24:45 brad Exp $ .\" .\" Copyright (c) 2000 Jason L. Wright (jason@thought.net) .\" All rights reserved. @@ -36,8 +36,8 @@ The .Nm driver supports Broadcom BCM5400 100/1000TX Ethernet PHY interfaces, as well -as the BCM5401, BCM5411, BCM5421S, BCM5462, BCM5701, BCM5703, BCM5704, BCM5705, -BCM5714, BCM5750 and BCM5752 10/100/1000baseTX Ethernet PHY interfaces. +as the BCM5401, BCM5411, BCM5421, BCM5421K2, BCM5462, BCM570x, BCM5714, +BCM5750 and BCM5752 10/100/1000baseTX Ethernet PHY interfaces. .Sh SEE ALSO .Xr bge 4 , .Xr ifmedia 4 , diff --git a/sys/dev/mii/brgphy.c b/sys/dev/mii/brgphy.c index 8ad7e5edaf8..ba10112719b 100644 --- a/sys/dev/mii/brgphy.c +++ b/sys/dev/mii/brgphy.c @@ -1,4 +1,4 @@ -/* $OpenBSD: brgphy.c,v 1.33 2005/10/01 03:04:35 brad Exp $ */ +/* $OpenBSD: brgphy.c,v 1.34 2005/10/01 17:22:26 brad Exp $ */ /* * Copyright (c) 2000 @@ -96,8 +96,10 @@ static const struct mii_phydesc brgphys[] = { MII_STR_xxBROADCOM_BCM5401 }, { MII_OUI_xxBROADCOM, MII_MODEL_xxBROADCOM_BCM5411, MII_STR_xxBROADCOM_BCM5411 }, - { MII_OUI_xxBROADCOM, MII_MODEL_xxBROADCOM_BCM5421S, - MII_STR_xxBROADCOM_BCM5421S }, + { MII_OUI_xxBROADCOM, MII_MODEL_xxBROADCOM_BCM5421, + MII_STR_xxBROADCOM_BCM5421 }, + { MII_OUI_xxBROADCOM, MII_MODEL_xxBROADCOM_BCM5421K2, + MII_STR_xxBROADCOM_BCM5421K2 }, { MII_OUI_xxBROADCOM, MII_MODEL_xxBROADCOM_BCM5462, MII_STR_xxBROADCOM_BCM5462 }, { MII_OUI_xxBROADCOM, MII_MODEL_xxBROADCOM_BCM5701, |