From 1c957036bbd912322793da676d05e169abf24782 Mon Sep 17 00:00:00 2001 From: Mans Rullgard Date: Thu, 2 Oct 2008 09:36:51 +0100 Subject: [PATCH] OMAP: Increase VMALLOC_END to allow 256MB RAM This increases VMALLOC_END to 0x18000000, making room for 256MB RAM with the default 128MB vmalloc region. Note that after this patch there's no longer a hole between vmalloc space and the beginning of IO space on omap2 as the first virtual mapping starts at 0xd8000000. Signed-off-by: Mans Rullgard Acked-by: Kevin Hilman --- arch/arm/plat-omap/include/mach/vmalloc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/plat-omap/include/mach/vmalloc.h b/arch/arm/plat-omap/include/mach/vmalloc.h index d8515cbdbc0..b97dfafeebd 100644 --- a/arch/arm/plat-omap/include/mach/vmalloc.h +++ b/arch/arm/plat-omap/include/mach/vmalloc.h @@ -17,5 +17,5 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#define VMALLOC_END (PAGE_OFFSET + 0x17000000) +#define VMALLOC_END (PAGE_OFFSET + 0x18000000) -- 2.41.0