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: Dirk Behme <dirk.behme@gmail.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
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);
}
{
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");