From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ladislav Michl Date: Wed, 16 Jun 2004 15:42:40 +0200 Subject: [U-Boot-Users] [PATCH] smc91111.c gcc-3.3.3 warning fix Message-ID: <20040616134239.GA8269@umax645sx> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Hi, really trivial fix... smc91111.c: In function `smc_phy_configure': smc91111.c:1419: warning: deprecated use of label at end of compound statement Index: drivers/smc91111.c =================================================================== RCS file: /cvsroot/u-boot/u-boot/drivers/smc91111.c,v retrieving revision 1.15 diff -u -p -r1.15 smc91111.c --- drivers/smc91111.c 9 Jun 2004 14:47:55 -0000 1.15 +++ drivers/smc91111.c 16 Jun 2004 13:35:09 -0000 @@ -1322,7 +1322,7 @@ static void smc_phy_configure () if (timeout < 1) { printf ("%s:PHY reset timed out\n", SMC_DEV_NAME); - goto smc_phy_configure_exit; + return; } /* Read PHY Register 18, Status Output */ @@ -1413,9 +1413,6 @@ static void smc_phy_configure () /* Re-Configure the Receive/Phy Control register */ SMC_outw (RPC_DEFAULT, RPC_REG); - - smc_phy_configure_exit: - } #endif /* !CONFIG_SMC91111_EXT_PHY */