From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:56911) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YxrRO-0003TQ-GU for qemu-devel@nongnu.org; Thu, 28 May 2015 02:37:22 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YxrRK-0001RA-Dq for qemu-devel@nongnu.org; Thu, 28 May 2015 02:37:18 -0400 Received: from mail-bn1bon0064.outbound.protection.outlook.com ([157.56.111.64]:14733 helo=na01-bn1-obe.outbound.protection.outlook.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YxrRK-0001R6-85 for qemu-devel@nongnu.org; Thu, 28 May 2015 02:37:14 -0400 Date: Thu, 28 May 2015 16:33:09 +1000 From: "Edgar E. Iglesias" Message-ID: <20150528063309.GS30952@toto> References: <80d478629df9a635771d46f2b4f85cb94c186b26.1432790821.git.alistair.francis@xilinx.com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Disposition: inline In-Reply-To: <80d478629df9a635771d46f2b4f85cb94c186b26.1432790821.git.alistair.francis@xilinx.com> Subject: Re: [Qemu-devel] [PATCH v2 1/5] target-microblaze: Fix up indentation List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Alistair Francis Cc: peter.crosthwaite@xilinx.com, qemu-devel@nongnu.org, afaerber@suse.de, rth@twiddle.net On Thu, May 28, 2015 at 03:36:25PM +1000, Alistair Francis wrote: > 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 > --- > > target-microblaze/op_helper.c | 10 +++++----- > 1 files 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.7.1 >