Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933349Ab0KORlL (ORCPT ); Mon, 15 Nov 2010 12:41:11 -0500 Received: from cam-admin0.cambridge.arm.com ([217.140.96.50]:49300 "EHLO cam-admin0.cambridge.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S933304Ab0KORlC (ORCPT ); Mon, 15 Nov 2010 12:41:02 -0500 From: Catalin Marinas To: linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Cc: Will Deacon Subject: [PATCH v3 18/20] ARM: LPAE: use phys_addr_t for physical start address in early_mem Date: Mon, 15 Nov 2010 17:40:27 +0000 Message-Id: <1289842829-3027-19-git-send-email-catalin.marinas@arm.com> X-Mailer: git-send-email 1.7.3.2.164.g6f10c In-Reply-To: <1289842829-3027-1-git-send-email-catalin.marinas@arm.com> References: <1289842829-3027-1-git-send-email-catalin.marinas@arm.com> X-OriginalArrivalTime: 15 Nov 2010 17:40:38.0659 (UTC) FILETIME=[37633D30:01CB84EC] Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1442 Lines: 42 From: Will Deacon The physical start address of memory may be > 4GB and therefore unrepresentable using an unsigned long. This patch changes early_mem and arm_add_memory to use phys_addr_t instead of unsigned long for the start address. Signed-off-by: Will Deacon Signed-off-by: Catalin Marinas --- arch/arm/kernel/setup.c | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/arch/arm/kernel/setup.c b/arch/arm/kernel/setup.c index 81ab007..eaa87d4 100644 --- a/arch/arm/kernel/setup.c +++ b/arch/arm/kernel/setup.c @@ -442,7 +442,7 @@ static struct machine_desc * __init setup_machine(unsigned int nr) return list; } -static int __init arm_add_memory(unsigned long start, unsigned long size) +static int __init arm_add_memory(phys_addr_t start, unsigned long size) { struct membank *bank = &meminfo.bank[meminfo.nr_banks]; @@ -478,7 +478,8 @@ static int __init arm_add_memory(unsigned long start, unsigned long size) static int __init early_mem(char *p) { static int usermem __initdata = 0; - unsigned long size, start; + unsigned long size; + phys_addr_t start; char *endp; /* -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/