From: David Brownell Date: Wed, 28 Mar 2007 23:38:14 +0000 (-0700) Subject: ARM: OMAP: Fix GCC-reported compile time bug X-Git-Tag: v3.12-rc1~29692^2^4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cc150b03ae79b20e4c023f71913c1225f8a19a6b;p=kernel%2Fkernel-generic.git ARM: OMAP: Fix GCC-reported compile time bug Fix GCC-reported compile time bug which prevents booting when the framebuffer code is disabled. Signed-off-by: David Brownell Signed-off-by: Tony Lindgren Signed-off-by: Russell King --- diff --git a/arch/arm/plat-omap/fb.c b/arch/arm/plat-omap/fb.c index 469f580..4493bcf 100644 --- a/arch/arm/plat-omap/fb.c +++ b/arch/arm/plat-omap/fb.c @@ -333,7 +333,10 @@ unsigned long omapfb_reserve_sram(unsigned long sram_pstart, unsigned long sram_vstart, unsigned long sram_size, unsigned long start_avail, - unsigned long size_avail) {} + unsigned long size_avail) +{ + return 0; +} #endif