summaryrefslogtreecommitdiffstats
path: root/arch/arm
diff options
context:
space:
mode:
authorDavid Brownell2007-03-29 01:38:14 +0200
committerRussell King2007-05-09 11:40:12 +0200
commitcc150b03ae79b20e4c023f71913c1225f8a19a6b (patch)
tree7e311f197127873f8045ecaed5ae330677610ff8 /arch/arm
parentARM: OMAP: restore CONFIG_GENERIC_TIME (diff)
downloadkernel-qcow2-linux-cc150b03ae79b20e4c023f71913c1225f8a19a6b.tar.gz
kernel-qcow2-linux-cc150b03ae79b20e4c023f71913c1225f8a19a6b.tar.xz
kernel-qcow2-linux-cc150b03ae79b20e4c023f71913c1225f8a19a6b.zip
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 <dbrownell@users.sourceforge.net> Signed-off-by: Tony Lindgren <tony@atomide.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm')
-rw-r--r--arch/arm/plat-omap/fb.c5
1 files changed, 4 insertions, 1 deletions
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