smc91111_eeprom: fix linking error
authorMike Frysinger <vapier@gentoo.org>
Thu, 21 Jan 2010 10:04:59 +0000 (05:04 -0500)
committerBen Warren <biggerbadderben@gmail.com>
Mon, 1 Feb 2010 06:34:33 +0000 (22:34 -0800)
commitc4168af3ba03c17a73751b98c124bbd2e3e1f5b0
tree0729968e83d1569d917c6975a5f3eb94e61b3fc9
parent9b208ece0a4e040774e24990b7cb6f0ad0ca4cc7
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>
examples/standalone/smc91111_eeprom.c