From 90231cc22caa602501d3735313671634fdef464d Mon Sep 17 00:00:00 2001 From: Garrett D'Amore Date: Fri, 1 Jan 2010 21:44:57 -0800 Subject: [PATCH] 6913748 cannot limit MII autoneg to just 10 half duplex --- usr/src/uts/common/io/mii/mii.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr/src/uts/common/io/mii/mii.c b/usr/src/uts/common/io/mii/mii.c index 5e95471f94..b1501abccb 100644 --- a/usr/src/uts/common/io/mii/mii.c +++ b/usr/src/uts/common/io/mii/mii.c @@ -19,7 +19,7 @@ * CDDL HEADER END */ /* - * Copyright 2009 Sun Microsystems, Inc. All rights reserved. + * Copyright 2010 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */ @@ -1305,7 +1305,7 @@ phy_start(phy_handle_t *ph) if (ph->phy_adv_10_fdx) { anar |= MII_ABILITY_10BASE_T_FD; } - if (ph->phy_adv_100_hdx) { + if (ph->phy_adv_10_hdx) { anar |= MII_ABILITY_10BASE_T; } if (ph->phy_adv_pause) { -- 2.11.4.GIT