diff options
author | Javier Martinez Canillas <javier.martinez@collabora.co.uk> | 2012-12-16 03:48:52 +0100 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2012-12-16 11:19:48 -0800 |
commit | d7dde8c191d136415819e4456e21f2b0cc00c326 (patch) | |
tree | c911237207abe56f5d18aa5f7248480f9f2e765e /arch/arm/mach-omap2/common.c | |
parent | 2b8318881ddbcb67c5e8d2178b42284749442222 (diff) | |
download | linux-d7dde8c191d136415819e4456e21f2b0cc00c326.tar.bz2 |
ARM: OMAP2+: common: remove use of vram
commit 966458f OMAP: remove vram allocator
Removed the OMAP specific vram allocator but OMAP2 common was
still trying to use it and this lead to the following build error:
CC arch/arm/mach-omap2/common.o
arch/arm/mach-omap2/common.c:19:23: fatal error: plat/vram.h: No such file or directory
compilation terminated.
make[1]: *** [arch/arm/mach-omap2/common.o] Error 1
make: *** [arch/arm/mach-omap2] Error 2
Signed-off-by: Javier Martinez Canillas <javier.martinez@collabora.co.uk>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap2/common.c')
-rw-r--r-- | arch/arm/mach-omap2/common.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/arch/arm/mach-omap2/common.c b/arch/arm/mach-omap2/common.c index 5c2fd4863b2b..2dabb9ecb986 100644 --- a/arch/arm/mach-omap2/common.c +++ b/arch/arm/mach-omap2/common.c @@ -16,8 +16,6 @@ #include <linux/init.h> #include <linux/platform_data/dsp-omap.h> -#include <plat/vram.h> - #include "common.h" #include "omap-secure.h" @@ -32,7 +30,6 @@ int __weak omap_secure_ram_reserve_memblock(void) void __init omap_reserve(void) { - omap_vram_reserve_sdram_memblock(); omap_dsp_reserve_sdram_memblock(); omap_secure_ram_reserve_memblock(); omap_barrier_reserve_memblock(); |