diff options
author | Stuart Henderson <sthen@cvs.openbsd.org> | 2009-05-21 23:04:21 +0000 |
---|---|---|
committer | Stuart Henderson <sthen@cvs.openbsd.org> | 2009-05-21 23:04:21 +0000 |
commit | e05032cbbfa35d846563269454722a206737422a (patch) | |
tree | ad47d17c6d7cd311062d914e1aea10421501addf /sys/dev/mii | |
parent | 185d67cd6bd7d199a16ca4b631e1f64771bbf941 (diff) |
add support for BCM576x, 577xx, and some new 572x/578x devices.
from Brad; testing by phessler, naddy, myself and others on a range
of older and newer devices. ok dlg@.
Diffstat (limited to 'sys/dev/mii')
-rw-r--r-- | sys/dev/mii/brgphy.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/mii/brgphy.c b/sys/dev/mii/brgphy.c index 18e8f76ea08..197203b8004 100644 --- a/sys/dev/mii/brgphy.c +++ b/sys/dev/mii/brgphy.c @@ -1,4 +1,4 @@ -/* $OpenBSD: brgphy.c,v 1.84 2008/11/08 03:03:50 brad Exp $ */ +/* $OpenBSD: brgphy.c,v 1.85 2009/05/21 23:04:20 sthen Exp $ */ /* * Copyright (c) 2000 @@ -140,6 +140,8 @@ static const struct mii_phydesc brgphys[] = { MII_STR_xxBROADCOM2_BCM5722 }, { MII_OUI_xxBROADCOM2, MII_MODEL_xxBROADCOM2_BCM5755, MII_STR_xxBROADCOM2_BCM5755 }, + { MII_OUI_xxBROADCOM2, MII_MODEL_xxBROADCOM2_BCM5784, + MII_STR_xxBROADCOM2_BCM5784 }, { MII_OUI_xxBROADCOM2, MII_MODEL_xxBROADCOM2_BCM5787, MII_STR_xxBROADCOM2_BCM5787 }, { MII_OUI_xxBROADCOM, MII_MODEL_xxBROADCOM_BCM5706, |