summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrant Grundler <grundler@cup.hp.com>2002-05-07 04:24:46 -0700
committerDavid S. Miller <davem@nuts.ninka.net>2002-05-07 04:24:46 -0700
commite53dd853f384c791da43fea73f32b17f011e479b (patch)
tree874a3a9f20e8fb6b833d65e34a31e772c54f14ab
parent441d53808e3dd6ff6dc497fb980bb40186836d41 (diff)
Tigon3 fix:
- Fix typo in setting MR_LP_ADV duplex flags.
-rw-r--r--drivers/net/tg3.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/tg3.c b/drivers/net/tg3.c
index 8f67b859c67c..48ba1b4cbc75 100644
--- a/drivers/net/tg3.c
+++ b/drivers/net/tg3.c
@@ -1211,7 +1211,7 @@ static int tg3_fiber_aneg_smachine(struct tg3 *tp,
if (ap->rxconfig & ANEG_CFG_FD)
ap->flags |= MR_LP_ADV_FULL_DUPLEX;
if (ap->rxconfig & ANEG_CFG_HD)
- ap->flags |= MR_LP_ADV_FULL_DUPLEX;
+ ap->flags |= MR_LP_ADV_HALF_DUPLEX;
if (ap->rxconfig & ANEG_CFG_PS1)
ap->flags |= MR_LP_ADV_SYM_PAUSE;
if (ap->rxconfig & ANEG_CFG_PS2)