Skip to content

Commit

Permalink
Enable to reserve GPU Memory in higher memory to avoid to shrink DMA …
Browse files Browse the repository at this point in the history
…zone
  • Loading branch information
wolfgar committed Jul 10, 2013
1 parent 99f0def commit 26c6d7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/arm/mach-mx6/board-wand.c
Expand Up @@ -1013,7 +1013,7 @@ static void __init wand_reserve(void) {
phys_addr_t phys;

if (wand_gpu_pdata.reserved_mem_size) {
phys = memblock_alloc_base(wand_gpu_pdata.reserved_mem_size, SZ_4K, SZ_512M);
phys = memblock_alloc_base(wand_gpu_pdata.reserved_mem_size, SZ_4K, 2 * SZ_1G);
memblock_remove(phys, wand_gpu_pdata.reserved_mem_size);
wand_gpu_pdata.reserved_mem_base = phys;
}
Expand Down

0 comments on commit 26c6d7b

Please sign in to comment.