From: David Brownell Date: Wed, 28 Mar 2007 23:38:14 +0000 (-0700) Subject: ARM: OMAP: Fix GCC-reported compile time bug X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=cc150b03ae79b20e4c023f71913c1225f8a19a6b;p=deliverable%2Flinux.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 469f580ca057..4493bcff5172 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