From patchwork Tue Apr 9 20:01:18 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Arnd Bergmann X-Patchwork-Id: 2416781 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from casper.infradead.org (casper.infradead.org [85.118.1.10]) by patchwork2.kernel.org (Postfix) with ESMTP id 9F16FDF25A for ; Tue, 9 Apr 2013 20:01:38 +0000 (UTC) Received: from merlin.infradead.org ([2001:4978:20e::2]) by casper.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1UPejY-0007wE-P3; Tue, 09 Apr 2013 20:01:36 +0000 Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1UPejW-0003Bg-8B; Tue, 09 Apr 2013 20:01:34 +0000 Received: from moutng.kundenserver.de ([212.227.126.187]) by merlin.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1UPejT-0003BP-Bx for linux-arm-kernel@lists.infradead.org; Tue, 09 Apr 2013 20:01:32 +0000 Received: from klappe2.localnet (HSI-KBW-46-223-90-92.hsi.kabel-badenwuerttemberg.de [46.223.90.92]) by mrelayeu.kundenserver.de (node=mreu3) with ESMTP (Nemesis) id 0Lunq9-1UYlOt2tfd-0104uj; Tue, 09 Apr 2013 22:01:22 +0200 From: Arnd Bergmann To: Stephen Warren Subject: Re: [GIT PULL 7/8] ARM: tegra: multi-platform conversion Date: Tue, 9 Apr 2013 22:01:18 +0200 User-Agent: KMail/1.12.2 (Linux/3.8.0-16-generic; KDE/4.3.2; x86_64; ; ) References: <1365181426-11547-1-git-send-email-swarren@wwwdotorg.org> <1365181426-11547-7-git-send-email-swarren@wwwdotorg.org> <201304091659.08376.arnd@arndb.de> In-Reply-To: <201304091659.08376.arnd@arndb.de> MIME-Version: 1.0 Message-Id: <201304092201.18950.arnd@arndb.de> X-Provags-ID: V02:K0:QI8HtPu6b6q0oF4Xo34ps6tz+NnaENHgx2HOa9XvlHI 6Ai/1f52nQZz4BP8tJPTfrT5Sh4vsML/A9H6CG7U1MtR/WzFvw 1SOeD8byFhD6fR3RhxGCOZ/ypJgleENSQgX2pKP4qRW06WNAUM bpBnWvG0y3M+H0c143MKxLQSb6iCVepIW55BRRpLJp0sLQGgjb GNWDfrZ9lcKUpLVZUCs+ESeApuQpR7qT2M86lWElUOo+NA09QL 0bVBKep0VKlbfVoVkxWHVyL6RY+0iIJIz8Z+k/KtlAszqSQqJp 3JMChOPYYLYKkQM/zkEB3OFlSbTPjR9Z5mknsWatvRf1YqlAkY oPCQEFg699TltowRVlVA= X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20130409_160131_632888_98E5A282 X-CRM114-Status: UNSURE ( 9.70 ) X-CRM114-Notice: Please train this message. X-Spam-Score: -1.9 (-) X-Spam-Report: SpamAssassin version 3.3.2 on merlin.infradead.org summary: Content analysis details: (-1.9 points) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 RCVD_IN_DNSWL_NONE RBL: Sender listed at http://www.dnswl.org/, no trust [212.227.126.187 listed in list.dnswl.org] -0.0 SPF_HELO_PASS SPF: HELO matches SPF record -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] Cc: linux-tegra@vger.kernel.org, arm@kernel.org, linux-arm-kernel@lists.infradead.org X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org On Tuesday 09 April 2013, Arnd Bergmann wrote: > On Friday 05 April 2013, Stephen Warren wrote: > > This branch converts Tegra to support multi-platform/single-zImage. > I had to reorder the branches in arm-soc to avoid starting a > next/multiplatform2 branch, but I saw nothing that prevents us from > having multiplatform after soc. I've applied this patch on top. From 1939e142b04d91b97a8643dd68c4b3fae48a136b Mon Sep 17 00:00:00 2001 From: Arnd Bergmann Date: Tue, 9 Apr 2013 21:58:38 +0200 Subject: [PATCH] ARM: tegra: build assembly files with -march=armv7-a The tegra assembly files are written for ARMv7 and are not compatible with ARMv6, which leads to build warnings when compiling a dual ARMv6/v7 kernel. Since this code is only ever run on Tegra ARMv7 hardware, we can tell the assembler which architecture level to use. Signed-off-by: Arnd Bergmann diff --git a/arch/arm/mach-tegra/Makefile b/arch/arm/mach-tegra/Makefile index e40326d..bfc5b07 100644 --- a/arch/arm/mach-tegra/Makefile +++ b/arch/arm/mach-tegra/Makefile @@ -1,3 +1,5 @@ +asflags-y += -march=armv7-a + obj-y += common.o obj-y += io.o obj-y += irq.o