From: Shaohui Xie Date: Fri, 11 Apr 2014 04:12:30 +0000 (+0800) Subject: powerpc/t1040rdb: added a break in switch case X-Git-Tag: v2014.07-rc1~15^2~9 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b0615f0bd22abc575824a0e20d1192913b77e282;p=platform%2Fkernel%2Fu-boot.git powerpc/t1040rdb: added a break in switch case There should be a break for case PHY_INTERFACE_MODE_SGMII, otherwise it will fall into case PHY_INTERFACE_MODE_RGMII. Signed-off-by: Shaohui Xie Reviewed-by: York Sun --- diff --git a/board/freescale/t104xrdb/eth.c b/board/freescale/t104xrdb/eth.c index 0188fd4..63e5f90 100644 --- a/board/freescale/t104xrdb/eth.c +++ b/board/freescale/t104xrdb/eth.c @@ -41,6 +41,7 @@ int board_eth_init(bd_t *bis) /* T1040RDB only supports SGMII on DTSEC3 */ fm_info_set_phy_address(FM1_DTSEC3, CONFIG_SYS_SGMII1_PHY_ADDR); + break; #endif case PHY_INTERFACE_MODE_RGMII: if (FM1_DTSEC4 == i)