From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:38212) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aS1Su-0000ts-4G for qemu-devel@nongnu.org; Sat, 06 Feb 2016 06:55:48 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aS1Sq-0001nN-28 for qemu-devel@nongnu.org; Sat, 06 Feb 2016 06:55:48 -0500 Date: Sat, 6 Feb 2016 12:49:46 +0100 From: "Edgar E. Iglesias" Message-ID: <20160206114946.GA3913@toto> References: <1454506721-11843-1-git-send-email-peter.maydell@linaro.org> <1454506721-11843-2-git-send-email-peter.maydell@linaro.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1454506721-11843-2-git-send-email-peter.maydell@linaro.org> Subject: Re: [Qemu-devel] [PATCH 1/7] target-arm: Fix typo in comment in arm_is_secure_below_el3() List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Peter Maydell Cc: qemu-arm@nongnu.org, qemu-devel@nongnu.org, patches@linaro.org On Wed, Feb 03, 2016 at 01:38:35PM +0000, Peter Maydell wrote: > Fix a typo where "EL2" was written but "EL3" intended. Reviewed-by: Edgar E. Iglesias > > Signed-off-by: Peter Maydell > --- > target-arm/cpu.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/target-arm/cpu.h b/target-arm/cpu.h > index b8b3364..52284e9 100644 > --- a/target-arm/cpu.h > +++ b/target-arm/cpu.h > @@ -931,7 +931,7 @@ static inline bool arm_is_secure_below_el3(CPUARMState *env) > if (arm_feature(env, ARM_FEATURE_EL3)) { > return !(env->cp15.scr_el3 & SCR_NS); > } else { > - /* If EL2 is not supported then the secure state is implementation > + /* If EL3 is not supported then the secure state is implementation > * defined, in which case QEMU defaults to non-secure. > */ > return false; > -- > 1.9.1 >