Re: [U-Boot] [PATCH] Fix breakage in SMC EEPROM standalone applications

2010-01-18 Thread Mike Frysinger
On Monday 18 January 2010 18:15:32 Ben Warren wrote: > Tom wrote: > > Ben Warren wrote: > >> Commit 6a45e384955262882375a2785426dc65aeb636c4 (Make getenv_IPaddr() > >> global) > >> inadvertently added ' #include "net.h" ' to the standalone programs, > >> creating > >> duplicate definitions of 'stru

Re: [U-Boot] [PATCH] Fix breakage in SMC EEPROM standalone applications

2010-01-18 Thread Ben Warren
Hi Tom, Tom wrote: > Ben Warren wrote: >> Commit 6a45e384955262882375a2785426dc65aeb636c4 (Make getenv_IPaddr() >> global) >> inadvertently added ' #include "net.h" ' to the standalone programs, >> creating >> duplicate definitions of 'struct eth_device'. This patch removes the >> local >> def

Re: [U-Boot] [PATCH] Fix breakage in SMC EEPROM standalone applications

2010-01-18 Thread Wolfgang Denk
Dear Ben Warren, In message <1263843331-30089-1-git-send-email-biggerbadder...@gmail.com> you wrote: > Commit 6a45e384955262882375a2785426dc65aeb636c4 (Make getenv_IPaddr() global) > inadvertently added ' #include "net.h" ' to the standalone programs, creating > duplicate definitions of 'struct e

Re: [U-Boot] [PATCH] Fix breakage in SMC EEPROM standalone applications

2010-01-18 Thread Mike Frysinger
On Monday 18 January 2010 14:35:31 Ben Warren wrote: > --- a/examples/standalone/smc911x_eeprom.c > +++ b/examples/standalone/smc911x_eeprom.c > @@ -324,7 +317,6 @@ int smc911x_eeprom(int argc, char *argv[]) > { > /* Avoid initializing on stack as gcc likes to call memset() */ > struct

Re: [U-Boot] [PATCH] Fix breakage in SMC EEPROM standalone applications

2010-01-18 Thread Dirk Behme
On 18.01.2010 20:35, Ben Warren wrote: > Commit 6a45e384955262882375a2785426dc65aeb636c4 (Make getenv_IPaddr() global) > inadvertently added ' #include "net.h" ' to the standalone programs, creating > duplicate definitions of 'struct eth_device'. This patch removes the local > definitions and remo

[U-Boot] [PATCH] Fix breakage in SMC EEPROM standalone applications

2010-01-18 Thread Ben Warren
Commit 6a45e384955262882375a2785426dc65aeb636c4 (Make getenv_IPaddr() global) inadvertently added ' #include "net.h" ' to the standalone programs, creating duplicate definitions of 'struct eth_device'. This patch removes the local definitions and removes other code that breaks due to the change in