
Dear Marek Vasut,
In message 1317603450-7527-7-git-send-email-marek.vasut@gmail.com you wrote:
From: Marek Vasut marex@pollux.denx.de
Fix...
Also, squash a warning about initialized static data.
Signed-off-by: Marek Vasut marek.vasut@gmail.com
examples/standalone/eepro100_eeprom.c | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/examples/standalone/eepro100_eeprom.c b/examples/standalone/eepro100_eeprom.c index 3c7f380..889ab55 100644 --- a/examples/standalone/eepro100_eeprom.c +++ b/examples/standalone/eepro100_eeprom.c @@ -59,7 +59,7 @@ static unsigned short eeprom[256]; static int eeprom_size = 64; static int eeprom_addr_size = 6;
-static int debug = 0; +static int eedebug;
It appears that there is no code anywhere that would ever change the value of debug resp. eedebug; so this should probably be cleaned up differently ?
Best regards,
Wolfgang Denk