aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc/mm/hash_utils_64.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/powerpc/mm/hash_utils_64.c')
-rw-r--r--arch/powerpc/mm/hash_utils_64.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/mm/hash_utils_64.c b/arch/powerpc/mm/hash_utils_64.c
index 4cc53f92377e..0b018b29cda8 100644
--- a/arch/powerpc/mm/hash_utils_64.c
+++ b/arch/powerpc/mm/hash_utils_64.c
@@ -530,10 +530,10 @@ void __init htab_initialize(void)
530 } else { 530 } else {
531 /* Find storage for the HPT. Must be contiguous in 531 /* Find storage for the HPT. Must be contiguous in
532 * the absolute address space. On cell we want it to be 532 * the absolute address space. On cell we want it to be
533 * in the first 1 Gig. 533 * in the first 2 Gig so we can use it for IOMMU hacks.
534 */ 534 */
535 if (machine_is(cell)) 535 if (machine_is(cell))
536 limit = 0x40000000; 536 limit = 0x80000000;
537 else 537 else
538 limit = 0; 538 limit = 0;
539 539