瀏覽代碼

drivers/net/smc91111.c: fix warning: variable ... set but not used

Fix:
smc91111.c: In function 'smc_phy_configure':
smc91111.c:1194:6: warning: variable 'failed' set but not used [-Wunused-but-set-variable]
smc91111.c:1190:7: warning: variable 'phyaddr' set but not used [-Wunused-but-set-variable]

Signed-off-by: Wolfgang Denk <wd@denx.de>
Wolfgang Denk 13 年之前
父節點
當前提交
bf513c2d75
共有 1 個文件被更改,包括 0 次插入8 次删除
  1. 0 8
      drivers/net/smc91111.c

+ 0 - 8
drivers/net/smc91111.c

@@ -1187,18 +1187,12 @@ static void smc_wait_ms(unsigned int ms)
 static void smc_phy_configure (struct eth_device *dev)
 static void smc_phy_configure (struct eth_device *dev)
 {
 {
 	int timeout;
 	int timeout;
-	byte phyaddr;
 	word my_phy_caps;	/* My PHY capabilities */
 	word my_phy_caps;	/* My PHY capabilities */
 	word my_ad_caps;	/* My Advertised capabilities */
 	word my_ad_caps;	/* My Advertised capabilities */
 	word status = 0;	/*;my status = 0 */
 	word status = 0;	/*;my status = 0 */
-	int failed = 0;
 
 
 	PRINTK3 ("%s: smc_program_phy()\n", SMC_DEV_NAME);
 	PRINTK3 ("%s: smc_program_phy()\n", SMC_DEV_NAME);
 
 
-
-	/* Get the detected phy address */
-	phyaddr = SMC_PHY_ADDR;
-
 	/* Reset the PHY, setting all other bits to zero */
 	/* Reset the PHY, setting all other bits to zero */
 	smc_write_phy_register (dev, PHY_CNTL_REG, PHY_CNTL_RST);
 	smc_write_phy_register (dev, PHY_CNTL_REG, PHY_CNTL_RST);
 
 
@@ -1296,13 +1290,11 @@ static void smc_phy_configure (struct eth_device *dev)
 
 
 	if (timeout < 1) {
 	if (timeout < 1) {
 		printf ("%s: PHY auto-negotiate timed out\n", SMC_DEV_NAME);
 		printf ("%s: PHY auto-negotiate timed out\n", SMC_DEV_NAME);
-		failed = 1;
 	}
 	}
 
 
 	/* Fail if we detected an auto-negotiate remote fault */
 	/* Fail if we detected an auto-negotiate remote fault */
 	if (status & PHY_STAT_REM_FLT) {
 	if (status & PHY_STAT_REM_FLT) {
 		printf ("%s: PHY remote fault detected\n", SMC_DEV_NAME);
 		printf ("%s: PHY remote fault detected\n", SMC_DEV_NAME);
-		failed = 1;
 	}
 	}
 
 
 	/* Re-Configure the Receive/Phy Control register */
 	/* Re-Configure the Receive/Phy Control register */