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: 9463031 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 393AB60231 for ; Tue, 6 Dec 2016 18:05:39 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 311F62849B for ; Tue, 6 Dec 2016 18:05:39 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 25D842849E; Tue, 6 Dec 2016 18:05: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 vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id CE6A12849B for ; Tue, 6 Dec 2016 18:05:38 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752406AbcLFSFe (ORCPT ); Tue, 6 Dec 2016 13:05:34 -0500 Received: from mx1.redhat.com ([209.132.183.28]:42408 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751598AbcLFSFd (ORCPT ); Tue, 6 Dec 2016 13:05:33 -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 Cc: qemu-devel@nongnu.org, kvm@vger.kernel.org, kvmarm@lists.cs.columbia.edu, shannon.zhao@linaro.org, alistair.francis@xilinx.com, croberts@codeaurora.org, alindsay@codeaurora.org, drjones@redhat.com, andre.przywara@arm.com Subject: [kvm-unit-tests PATCH v14 1/5] arm: rename cp15.h to sysreg.h 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) Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org 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_ */