Re: [U-Boot] [PATCH 14/19] cmd_pci405.c: Fix GCC 4.6 build warnings

2011-11-16 Thread Wolfgang Denk
Dear Stefan Roese,

In message 1321380186-6782-1-git-send-email...@denx.de you wrote:
 Fix:
 cmd_pci405.c: In function 'do_loadpci':
 cmd_pci405.c:45:6: warning: variable 'status' set but not used 
 [-Wunused-but-set-variable]
 
 Signed-off-by: Stefan Roese s...@denx.de
 ---
  board/esd/pci405/cmd_pci405.c |3 +--
  1 files changed, 1 insertions(+), 2 deletions(-)

Applied, thanks.

Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH, MD: Wolfgang Denk  Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: w...@denx.de
The explanation requiring the fewest assumptions is the  most  likely
to be correct.-- William of Occam
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


[U-Boot] [PATCH 14/19] cmd_pci405.c: Fix GCC 4.6 build warnings

2011-11-15 Thread Stefan Roese
Fix:
cmd_pci405.c: In function 'do_loadpci':
cmd_pci405.c:45:6: warning: variable 'status' set but not used 
[-Wunused-but-set-variable]

Signed-off-by: Stefan Roese s...@denx.de
---
 board/esd/pci405/cmd_pci405.c |3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/board/esd/pci405/cmd_pci405.c b/board/esd/pci405/cmd_pci405.c
index 13f9019..f570ef3 100644
--- a/board/esd/pci405/cmd_pci405.c
+++ b/board/esd/pci405/cmd_pci405.c
@@ -42,7 +42,6 @@ int do_loadpci(cmd_tbl_t *cmdtp, int flag, int argc, char * 
const argv[])
unsigned int *ptr = 0;
int count = 0;
int count2 = 0;
-   int status;
int i;
char addr[16];
char str[] = \\|/-;
@@ -99,7 +98,7 @@ int do_loadpci(cmd_tbl_t *cmdtp, int flag, int argc, char * 
const argv[])
 
local_args[0] = argv[0];
local_args[1] = NULL;
-   status = do_bootm (cmdtp, 0, 1, local_args);
+   do_bootm (cmdtp, 0, 1, local_args);
}
 
return 0;
-- 
1.7.7.3

___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot