From patchwork Fri Jul 8 02:54:29 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Barry Song X-Patchwork-Id: 954712 Received: from merlin.infradead.org (merlin.infradead.org [205.233.59.134]) by demeter2.kernel.org (8.14.4/8.14.4) with ESMTP id p682v9vp008672 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Fri, 8 Jul 2011 02:57:30 GMT Received: from canuck.infradead.org ([2001:4978:20e::1]) by merlin.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1Qf1FF-0004SA-Jq; Fri, 08 Jul 2011 02:56:46 +0000 Received: from localhost ([127.0.0.1] helo=canuck.infradead.org) by canuck.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1Qf1FF-0000sL-3O; Fri, 08 Jul 2011 02:56:45 +0000 Received: from cluster-d.mailcontrol.com ([85.115.60.190]) by canuck.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1Qf1Ej-0000lh-No for linux-arm-kernel@lists.infradead.org; Fri, 08 Jul 2011 02:56:14 +0000 Received: from rly16d.srv.mailcontrol.com (localhost.localdomain [127.0.0.1]) by rly16d.srv.mailcontrol.com (MailControl) with ESMTP id p682u8AD007040 for ; Fri, 8 Jul 2011 03:56:12 +0100 Received: from localhost.localdomain (localhost.localdomain [127.0.0.1]) by rly16d.srv.mailcontrol.com (MailControl) id p682tIlQ005544 for ; Fri, 8 Jul 2011 03:55:18 +0100 Received: from banasiexc02.ASIA.ROOT.PRI ([202.80.51.114]) by rly16d-eth0.srv.mailcontrol.com (envelope-sender ) (MIMEDefang) with ESMTP id p682tA8m005411 (TLS bits=128 verify=FAIL); Fri, 08 Jul 2011 03:55:18 +0100 (BST) Received: from SHAASIEXC02.ASIA.ROOT.PRI (10.125.12.85) by banasiexc02.ASIA.ROOT.PRI (10.190.12.22) with Microsoft SMTP Server (TLS) id 14.1.270.1; Fri, 8 Jul 2011 08:25:15 +0530 Received: from localhost.localdomain (10.125.4.148) by asimail.csr.com (10.125.12.88) with Microsoft SMTP Server (TLS) id 14.1.270.1; Fri, 8 Jul 2011 10:55:13 +0800 From: Barry Song To: , , , , Subject: [PATCH 3/3] ARM: NUC93X: add UL suffix to VMALLOC_END to ensure it is properly typed Date: Thu, 7 Jul 2011 19:54:29 -0700 Message-ID: <1310093669-4681-4-git-send-email-bs14@csr.com> X-Mailer: git-send-email 1.7.1 In-Reply-To: <1310093669-4681-1-git-send-email-bs14@csr.com> References: <1310093669-4681-1-git-send-email-bs14@csr.com> MIME-Version: 1.0 X-Originating-IP: [10.125.4.148] X-Scanned-By: MailControl A-12-00-01 (www.mailcontrol.com) on 10.68.1.126 X-CRM114-Version: 20090807-BlameThorstenAndJenny ( TRE 0.7.6 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20110707_225614_084338_61AF7D84 X-CRM114-Status: GOOD ( 14.47 ) X-Spam-Score: -0.7 (/) X-Spam-Report: SpamAssassin version 3.3.1 on canuck.infradead.org summary: Content analysis details: (-0.7 points) pts rule name description ---- ---------------------- -------------------------------------------------- -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at http://www.dnswl.org/, low trust [85.115.60.190 listed in list.dnswl.org] Cc: Barry Song , linux-arm-kernel@lists.infradead.org, Barry Song X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: linux-arm-kernel-bounces@lists.infradead.org Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.6 (demeter2.kernel.org [140.211.167.43]); Fri, 08 Jul 2011 02:57:30 +0000 (UTC) Signed-off-by: Barry Song --- arch/arm/mach-nuc93x/include/mach/vmalloc.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/arm/mach-nuc93x/include/mach/vmalloc.h b/arch/arm/mach-nuc93x/include/mach/vmalloc.h index 98a21b8..7d11a5f 100644 --- a/arch/arm/mach-nuc93x/include/mach/vmalloc.h +++ b/arch/arm/mach-nuc93x/include/mach/vmalloc.h @@ -18,6 +18,6 @@ #ifndef __ASM_ARCH_VMALLOC_H #define __ASM_ARCH_VMALLOC_H -#define VMALLOC_END (0xE0000000) +#define VMALLOC_END 0xE0000000UL #endif /* __ASM_ARCH_VMALLOC_H */