Typo fix in tsec.c

Fixup for the break statement in wrong place.

[Patch by urwithsughosh@gmail.com]
Acked-by: Andy Fleming <afleming@freescale.com>
Signed-off-by:	Wolfgang Denk <wd@denx.de>
This commit is contained in:
urwithsughosh@gmail.com 2007-09-10 14:54:56 -04:00 committed by Wolfgang Denk
parent 5bd7fe9aeb
commit cd2d1602c5
1 changed files with 1 additions and 1 deletions

View File

@ -1262,10 +1262,10 @@ uint mii_parse_lxt971_sr2(uint mii_reg, struct tsec_private *priv)
case MIIM_LXT971_SR2_100HDX:
priv->speed = 100;
priv->duplexity = 0;
break;
default:
priv->speed = 100;
priv->duplexity = 1;
break;
}
} else {
priv->speed = 0;