[U-Boot-Users] [PATCH] smc91111.c gcc-3.3.3 warning fix

Ladislav Michl ladis at linux-mips.org
Wed Jun 16 15:42:40 CEST 2004


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 */
 





More information about the U-Boot mailing list