Commit ef71bf87 authored by Dirk Behme's avatar Dirk Behme Committed by Tony Lindgren

ARM: OMAP: Fix compilation of dsp_mem.c

Fix compilation of dsp_mem.c. omapfb_ready is only available if
CONFIG_FB_OMAP_LCDC_EXTERNAL is set, else compiler stops with error.
status is only used in case CONFIG_FB_OMAP_LCDC_EXTERNAL is set.
Compiler warns about this.
Signed-off-by: default avatarDirk Behme <dirk.behme@gmail.com>
Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
parent a598c047
......@@ -210,11 +210,13 @@ void mbox_fbctl_upd(void)
win.format = buf[4];
release_ipbuf_pvt(ipbuf_sys_da);
#ifdef CONFIG_FB_OMAP_LCDC_EXTERNAL
if (!omapfb_ready) {
printk(KERN_WARNING
"omapdsp: fbupd() called while HWA742 is not ready!\n");
return;
}
#endif
omapfb_update_window_async(registered_fb[0], &win, fbupd_cb, NULL);
}
......@@ -237,7 +239,10 @@ static int dsp_fbexport(dsp_long_t *dspadr)
{
dsp_long_t dspadr_actual;
unsigned long padr_sys, padr, fbsz_sys, fbsz;
int cnt, status;
int cnt;
#ifdef CONFIG_FB_OMAP_LCDC_EXTERNAL
int status;
#endif
pr_debug( "omapdsp: frame buffer export\n");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment