From patchwork Tue Dec 6 18:05:24 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Wei Huang X-Patchwork-Id: 9463061 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 5C1AA6022E for ; Tue, 6 Dec 2016 18:16:39 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 538812849E for ; Tue, 6 Dec 2016 18:16:39 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 48615284A0; Tue, 6 Dec 2016 18:16:39 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=2.0 tests=BAYES_00,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by mail.wl.linuxfoundation.org (Postfix) with ESMTPS id E49302849E for ; Tue, 6 Dec 2016 18:16:38 +0000 (UTC) Received: from localhost ([::1]:33790 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cEKI9-0000Yo-Pn for patchwork-qemu-devel@patchwork.kernel.org; Tue, 06 Dec 2016 13:16:37 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:47450) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cEK7V-0006kD-9P for qemu-devel@nongnu.org; Tue, 06 Dec 2016 13:05:42 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cEK7S-0005VS-Kk for qemu-devel@nongnu.org; Tue, 06 Dec 2016 13:05:37 -0500 Received: from mx1.redhat.com ([209.132.183.28]:33744) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cEK7S-0005V6-Ao for qemu-devel@nongnu.org; Tue, 06 Dec 2016 13:05:34 -0500 Received: from int-mx14.intmail.prod.int.phx2.redhat.com (int-mx14.intmail.prod.int.phx2.redhat.com [10.5.11.27]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 651973F219; Tue, 6 Dec 2016 18:05:33 +0000 (UTC) Received: from weilaptop.redhat.com (vpn-62-139.rdu2.redhat.com [10.10.62.139]) by int-mx14.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id uB6I5TOe002456; Tue, 6 Dec 2016 13:05:31 -0500 From: Wei Huang To: cov@codeaurora.org Date: Tue, 6 Dec 2016 12:05:24 -0600 Message-Id: <1481047528-16180-2-git-send-email-wei@redhat.com> In-Reply-To: <1481047528-16180-1-git-send-email-wei@redhat.com> References: <1481047528-16180-1-git-send-email-wei@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.27 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.30]); Tue, 06 Dec 2016 18:05:33 +0000 (UTC) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 209.132.183.28 Subject: [Qemu-devel] [kvm-unit-tests PATCH v14 1/5] arm: rename cp15.h to sysreg.h X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: alindsay@codeaurora.org, drjones@redhat.com, kvm@vger.kernel.org, andre.przywara@arm.com, croberts@codeaurora.org, qemu-devel@nongnu.org, alistair.francis@xilinx.com, shannon.zhao@linaro.org, kvmarm@lists.cs.columbia.edu Errors-To: qemu-devel-bounces+patchwork-qemu-devel=patchwork.kernel.org@nongnu.org Sender: "Qemu-devel" X-Virus-Scanned: ClamAV using ClamSMTP To prepare for future support of ARMv8 system register, rename cp15.h file to sysreg.h, with _ASMARM_CP15_H_ renamed to _ASMARM_SYSREG_H_ in header file. Signed-off-by: Wei Huang --- arm/cstart.S | 2 +- lib/arm/asm/{cp15.h => sysreg.h} | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) rename lib/arm/asm/{cp15.h => sysreg.h} (94%) diff --git a/arm/cstart.S b/arm/cstart.S index 3943867..9822fb7 100644 --- a/arm/cstart.S +++ b/arm/cstart.S @@ -9,7 +9,7 @@ #include #include #include -#include +#include #define THREAD_START_SP ((THREAD_SIZE - S_FRAME_SIZE * 8) & ~7) diff --git a/lib/arm/asm/cp15.h b/lib/arm/asm/sysreg.h similarity index 94% rename from lib/arm/asm/cp15.h rename to lib/arm/asm/sysreg.h index 7690a48..3e1ad3a 100644 --- a/lib/arm/asm/cp15.h +++ b/lib/arm/asm/sysreg.h @@ -1,5 +1,5 @@ -#ifndef _ASMARM_CP15_H_ -#define _ASMARM_CP15_H_ +#ifndef _ASMARM_SYSREG_H_ +#define _ASMARM_SYSREG_H_ /* * From the Linux kernel arch/arm/include/asm/cp15.h * @@ -34,4 +34,4 @@ #define CR_AFE (1 << 29) /* Access flag enable */ #define CR_TE (1 << 30) /* Thumb exception enable */ -#endif /* _ASMARM_CP15_H_ */ +#endif /* _ASMARM_SYSREG_H_ */