Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cc150b03 authored by David Brownell's avatar David Brownell Committed by Russell King
Browse files

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: default avatarDavid Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
Signed-off-by: default avatarRussell King <rmk+kernel@arm.linux.org.uk>
parent 25ff0a65
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -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