projects
/
platform
/
kernel
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
dbe128a
)
board/sbc8560/sbc8560.c: Fix GCC 4.6 build warning
author
Kumar Gala
<galak@kernel.crashing.org>
Wed, 9 Nov 2011 16:03:43 +0000
(10:03 -0600)
committer
Kumar Gala
<galak@kernel.crashing.org>
Fri, 11 Nov 2011 13:49:00 +0000
(07:49 -0600)
Fix:
sbc8560.c: In function 'ft_board_setup':
sbc8560.c:351:12: warning: variable 'tmp' set but not used [-Wunused-but-set-variable]
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
board/sbc8560/sbc8560.c
patch
|
blob
|
history
diff --git
a/board/sbc8560/sbc8560.c
b/board/sbc8560/sbc8560.c
index
c5fe92e
..
98bc7df
100644
(file)
--- a/
board/sbc8560/sbc8560.c
+++ b/
board/sbc8560/sbc8560.c
@@
-348,7
+348,7
@@
phys_size_t fixed_sdram(void)
void
ft_board_setup(void *blob, bd_t *bd)
{
- int node
, tmp[2]
;
+ int node;
#ifdef CONFIG_PCI
const char *path;
#endif
@@
-356,7
+356,6
@@
ft_board_setup(void *blob, bd_t *bd)
ft_cpu_setup(blob, bd);
node = fdt_path_offset(blob, "/aliases");
- tmp[0] = 0;
if (node >= 0) {
#ifdef CONFIG_PCI
path = fdt_getprop(blob, node, "pci0", NULL);