Fix style issues primarily in 85xx and 83xx boards.
    - C++ comments
    - Trailing white space
    - Indentation not by TAB
    - Excessive amount of empty lines
    - Trailing empty lines
diff --git a/drivers/tsec.c b/drivers/tsec.c
index f5067b3..0c8b0de 100644
--- a/drivers/tsec.c
+++ b/drivers/tsec.c
@@ -524,11 +524,11 @@
 				regs->maccfg2 = ((regs->maccfg2&~(MACCFG2_IF))
 					| MACCFG2_MII);
 
-				/* If We're in reduced mode, we
-				 * need to say whether we're 10
-				 * or 100 MB. */
-				if ((priv->speed == 100) 
-						&& (priv->flags & TSEC_REDUCED))
+				/* If We're in reduced mode, we need
+				 * to say whether we're 10 or 100 MB.
+				 */
+				if ((priv->speed == 100)
+				    && (priv->flags & TSEC_REDUCED))
 					regs->ecntrl |= ECNTRL_R100;
 				else
 					regs->ecntrl &= ~(ECNTRL_R100);