summaryrefslogtreecommitdiffstats
path: root/board/freescale
diff options
context:
space:
mode:
authorKumar Gala <galak@kernel.crashing.org>2011-11-09 10:01:06 -0600
committerKumar Gala <galak@kernel.crashing.org>2011-11-11 07:48:59 -0600
commit67926c2a1d872deb12f21221e2a6d28ef575f956 (patch)
treee60a28eafe4f0b1ba31bbcc96b560db22662969c /board/freescale
parente55d637a5f0aff493d6fa2af96ff31cd193b2822 (diff)
downloadtalos-obmc-uboot-67926c2a1d872deb12f21221e2a6d28ef575f956.tar.gz
talos-obmc-uboot-67926c2a1d872deb12f21221e2a6d28ef575f956.zip
board/freescale/common/cds_pci_ft.c: Fix GCC 4.6 build warning
Fix: cds_pci_ft.c: In function 'cds_pci_fixup': cds_pci_ft.c:31:12: warning: variable 'tmp' set but not used [-Wunused-but-set-variable] Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'board/freescale')
-rw-r--r--board/freescale/common/cds_pci_ft.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/board/freescale/common/cds_pci_ft.c b/board/freescale/common/cds_pci_ft.c
index 6f221aff26..8a09f99cc4 100644
--- a/board/freescale/common/cds_pci_ft.c
+++ b/board/freescale/common/cds_pci_ft.c
@@ -28,13 +28,12 @@
#if defined(CONFIG_OF_BOARD_SETUP)
static void cds_pci_fixup(void *blob)
{
- int node, tmp[2];
+ int node;
const char *path;
int len, slot, i;
u32 *map = NULL;
node = fdt_path_offset(blob, "/aliases");
- tmp[0] = 0;
if (node >= 0) {
path = fdt_getprop(blob, node, "pci0", NULL);
if (path) {
OpenPOWER on IntegriCloud