From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39647) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z6dxy-0006JS-L1 for qemu-devel@nongnu.org; Sun, 21 Jun 2015 08:03:15 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Z6dxt-0001vF-Gw for qemu-devel@nongnu.org; Sun, 21 Jun 2015 08:03:14 -0400 Received: from mail-pd0-x22b.google.com ([2607:f8b0:400e:c02::22b]:35643) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z6dxt-0001v5-A8 for qemu-devel@nongnu.org; Sun, 21 Jun 2015 08:03:09 -0400 Received: by pdbci14 with SMTP id ci14so61725468pdb.2 for ; Sun, 21 Jun 2015 05:03:08 -0700 (PDT) Received: from localhost ([203.126.243.116]) by mx.google.com with ESMTPSA id s1sm16629226pda.54.2015.06.21.05.03.07 for (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Sun, 21 Jun 2015 05:03:07 -0700 (PDT) From: "Edgar E. Iglesias" Date: Sun, 21 Jun 2015 21:56:13 +1000 Message-Id: <1434887787-4188-3-git-send-email-edgar.iglesias@gmail.com> In-Reply-To: <1434887787-4188-1-git-send-email-edgar.iglesias@gmail.com> References: <1434887787-4188-1-git-send-email-edgar.iglesias@gmail.com> Subject: [Qemu-devel] [PATCH v1 02/16] target-microblaze: Fix up indentation List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org From: Alistair Francis Fix up the incorrect indentation level in the helper_stackprot() function. Signed-off-by: Alistair Francis Reviewed-by: Peter Crosthwaite Reviewed-by: Edgar E. Iglesias Signed-off-by: Edgar E. Iglesias --- target-microblaze/op_helper.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/target-microblaze/op_helper.c b/target-microblaze/op_helper.c index a4c8f04..d2b3624 100644 --- a/target-microblaze/op_helper.c +++ b/target-microblaze/op_helper.c @@ -468,11 +468,11 @@ void helper_memalign(CPUMBState *env, uint32_t addr, uint32_t dr, uint32_t wr, void helper_stackprot(CPUMBState *env, uint32_t addr) { if (addr < env->slr || addr > env->shr) { - qemu_log("Stack protector violation at %x %x %x\n", - addr, env->slr, env->shr); - env->sregs[SR_EAR] = addr; - env->sregs[SR_ESR] = ESR_EC_STACKPROT; - helper_raise_exception(env, EXCP_HW_EXCP); + qemu_log("Stack protector violation at %x %x %x\n", + addr, env->slr, env->shr); + env->sregs[SR_EAR] = addr; + env->sregs[SR_ESR] = ESR_EC_STACKPROT; + helper_raise_exception(env, EXCP_HW_EXCP); } } -- 1.9.1