diff options
| author | urwithsughosh@gmail.com <urwithsughosh@gmail.com> | 2007-09-10 14:54:56 -0400 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2007-09-15 21:41:58 +0200 | 
| commit | cd2d1602c54cc6957bdef3872272a4b264893960 (patch) | |
| tree | cfbf4237c2f7c2ba571dd4136ab4cb20d2bc6523 | |
| parent | 5bd7fe9aeb76906371f40b8fd07613f10922e3e7 (diff) | |
| download | olio-uboot-2014.01-cd2d1602c54cc6957bdef3872272a4b264893960.tar.xz olio-uboot-2014.01-cd2d1602c54cc6957bdef3872272a4b264893960.zip | |
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>
| -rw-r--r-- | drivers/tsec.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/drivers/tsec.c b/drivers/tsec.c index 6bca4dc0f..4ff3339c7 100644 --- a/drivers/tsec.c +++ b/drivers/tsec.c @@ -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; |