From mboxrd@z Thu Jan 1 00:00:00 1970 From: urwithsughosh at gmail.com Date: Mon, 10 Sep 2007 14:54:56 -0400 Subject: [U-Boot-Users] [PATCH] Typo fix in tsec.c Message-ID: <20070910185456.GD4678@GNU> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Hello, Fixup for the break statement in wrong place. -- sughosh diff --git a/drivers/tsec.c b/drivers/tsec.c index 6bca4dc..4ff3339 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;