Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1161085Ab2JXUEo (ORCPT ); Wed, 24 Oct 2012 16:04:44 -0400 Received: from mailserver6.natinst.com ([130.164.80.6]:38399 "EHLO spamkiller06.natinst.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S965308Ab2JXUEl (ORCPT ); Wed, 24 Oct 2012 16:04:41 -0400 Date: Wed, 24 Oct 2012 15:04:31 -0500 From: Josh Cartwright To: arm@kernel.org, Arnd Bergmann Cc: linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, John Linn , Nick Bowler , Michal Simek Subject: [PATCH v4 4/5] ARM: annotate VMALLOC_END definition with _AC Message-ID: <20121024200431.GE6713@beefymiracle.amer.corp.natinst.com> MIME-Version: 1.0 In-Reply-To: <20121024200222.GA6713@beefymiracle.amer.corp.natinst.com> User-Agent: Mutt/1.5.21 (2011-07-01) X-MIMETrack: Itemize by SMTP Server on MailServ59-US/AUS/H/NIC(Release 8.5.3FP2 HF169|September 14, 2012) at 10/24/2012 03:04:27 PM, Serialize by Router on MailServ59-US/AUS/H/NIC(Release 8.5.3FP2 HF169|September 14, 2012) at 10/24/2012 03:04:27 PM, Serialize complete at 10/24/2012 03:04:27 PM Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:5.7.7855,1.0.431,0.0.0000 definitions=2012-10-24_05:2012-10-24,2012-10-24,1970-01-01 signatures=0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1097 Lines: 31 This makes the definition of VMALLOC_END suitable for use within assembly code. This is necessary to allow the use of VMALLOC_END in defining where the early uart is mapped for use with DEBUG_LL. Signed-off-by: Josh Cartwright Acked-by: Arnd Bergmann --- arch/arm/include/asm/pgtable.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/include/asm/pgtable.h b/arch/arm/include/asm/pgtable.h index 08c1231..72904a2 100644 --- a/arch/arm/include/asm/pgtable.h +++ b/arch/arm/include/asm/pgtable.h @@ -40,7 +40,7 @@ */ #define VMALLOC_OFFSET (8*1024*1024) #define VMALLOC_START (((unsigned long)high_memory + VMALLOC_OFFSET) & ~(VMALLOC_OFFSET-1)) -#define VMALLOC_END 0xff000000UL +#define VMALLOC_END _AC(0xff000000,UL) #define LIBRARY_TEXT_START 0x0c000000 -- 1.8.0 -- 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/