exynos5250: remove unused ret variable in cpu.c

Showed up as an error when '--gc-sections' was added as a flag to the
compiler.

Change-Id: I214d3e16a72fca0becc677d7af66097464d64247
Signed-off-by: Isaac Christensen <isaac.christensen@se-eng.com>
Reviewed-on: http://review.coreboot.org/6926
Tested-by: build bot (Jenkins)
Reviewed-by: Aaron Durbin <adurbin@google.com>
This commit is contained in:
Isaac Christensen 2014-09-17 16:14:18 -06:00
parent e23f3b8ca2
commit 0c0efa7e50
1 changed files with 1 additions and 2 deletions

View File

@ -62,7 +62,6 @@ static void set_cpu_id(void)
static void exynos_displayport_init(device_t dev, u32 lcdbase,
unsigned long fb_size)
{
int ret;
struct soc_samsung_exynos5250_config *conf = dev->chip_info;
/* put these on the stack. If, at some point, we want to move
* this code to a pre-ram stage, it will be much easier.
@ -108,7 +107,7 @@ static void exynos_displayport_init(device_t dev, u32 lcdbase,
printk(BIOS_DEBUG, "Initializing Exynos LCD.\n");
ret = lcd_ctrl_init(fb_size, &panel, (void *)lcdbase);
lcd_ctrl_init(fb_size, &panel, (void *)lcdbase);
}
static void cpu_enable(device_t dev)