浏览代码

smc91111_eeprom: fix linking error

Building for a bf533-stamp ends up with this error:
smc91111_eeprom.o: In function `smc91111_eeprom':
examples/standalone/smc91111_eeprom.c:58: undefined reference to `memset'
make[2]: *** [smc91111_eeprom] Error 1

The new eth_struct definition means gcc has to zero out the structure on
the stack, and some gcc versions optimize this with an implicit call to
memset.  So tweak the structure style to avoid that gcc feature.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
Mike Frysinger 15 年之前
父节点
当前提交
c4168af3ba
共有 1 个文件被更改,包括 2 次插入3 次删除
  1. 2 3
      examples/standalone/smc91111_eeprom.c

+ 2 - 3
examples/standalone/smc91111_eeprom.c

@@ -53,9 +53,8 @@ int smc91111_eeprom (int argc, char *argv[])
 	int c, i, j, done, line, reg, value, start, what;
 	int c, i, j, done, line, reg, value, start, what;
 	char input[50];
 	char input[50];
 
 
-	struct eth_device dev = {
-		.iobase = CONFIG_SMC91111_BASE
-	};
+	struct eth_device dev;
+	dev.iobase = CONFIG_SMC91111_BASE;
 
 
 	/* Print the ABI version */
 	/* Print the ABI version */
 	app_startup (argv);
 	app_startup (argv);