summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKim Phillips <kim.phillips@freescale.com>2011-11-15 23:02:23 +0000
committerWolfgang Denk <wd@denx.de>2011-11-16 21:42:17 +0100
commite1a37f8599d2ffbee37f23ee1b8760faf2e1f026 (patch)
treede70ac0a5cafbebdc7ef6e865d6a75eb6055537b
parent67eee06cf13ccbfa839979996dedd394f28462e6 (diff)
downloadu-boot-imx-e1a37f8599d2ffbee37f23ee1b8760faf2e1f026.zip
u-boot-imx-e1a37f8599d2ffbee37f23ee1b8760faf2e1f026.tar.gz
u-boot-imx-e1a37f8599d2ffbee37f23ee1b8760faf2e1f026.tar.bz2
common: tsi148 - fix gcc 4.6 compiler warning
Configuring for vme8349 board... cmd_tsi148.c: In function 'tsi148_init': cmd_tsi148.c:56:17: warning: variable 'lastError' set but not used [-Wunused-but-set-variable] Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
-rw-r--r--common/cmd_tsi148.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/common/cmd_tsi148.c b/common/cmd_tsi148.c
index 6dc9dab..7f48ea2 100644
--- a/common/cmd_tsi148.c
+++ b/common/cmd_tsi148.c
@@ -53,7 +53,7 @@ static TSI148_DEV *dev;
int tsi148_init(void)
{
- int j, result, lastError = 0;
+ int j, result;
pci_dev_t busdevfn;
unsigned int val;
@@ -69,8 +69,7 @@ int tsi148_init(void)
dev = malloc(sizeof(*dev));
if (NULL == dev) {
puts("Tsi148: No memory!\n");
- result = -1;
- goto break_20;
+ return -1;
}
memset(dev, 0, sizeof(*dev));
@@ -139,8 +138,6 @@ int tsi148_init(void)
break_30:
free(dev);
dev = NULL;
- break_20:
- lastError = result;
return result;
}