From patchwork Fri May 29 06:29:28 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alistair Francis X-Patchwork-Id: 477589 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id E9F28140DED for ; Fri, 29 May 2015 16:30:33 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=gmail.com header.i=@gmail.com header.b=JS+MNAVh; dkim-atps=neutral Received: from localhost ([::1]:33818 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YyDoN-0004Zk-UD for incoming@patchwork.ozlabs.org; Fri, 29 May 2015 02:30:31 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54087) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YyDo1-00044Z-Te for qemu-devel@nongnu.org; Fri, 29 May 2015 02:30:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YyDnw-0002rX-DH for qemu-devel@nongnu.org; Fri, 29 May 2015 02:30:09 -0400 Received: from mail-pa0-x22e.google.com ([2607:f8b0:400e:c03::22e]:35743) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YyDnw-0002q7-13 for qemu-devel@nongnu.org; Fri, 29 May 2015 02:30:04 -0400 Received: by pacwv17 with SMTP id wv17so45302192pac.2 for ; Thu, 28 May 2015 23:30:03 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id:in-reply-to:references; bh=OCGgVDrwinYcZbeXtv90fa6wY1ph52sQkRlg+O43OAE=; b=JS+MNAVhUmcbkjtbTKloYAlyJioh3TANW/fHRYNSvPSOsig9Dx0AmcN2Wb9YORcwM8 1tvlmBnIlL5FANdRZRt2T2npl/hP490QozKVIyLxfKeChpBD2FF5Ty6md91WRY7ClFXe FtFOYekZ0k5IowvvS1tBYChwwFK26YGMivmxoXOTxQiAPwHklLGe6ZEuKuru8XSEq6lI Kf8f9RaN3q3phNx0AIRX61PTGzmTj1UFf7QCG+iNW++VmjtKX+492g6eKoppZJVgT6j5 tpxpDakGe0FZQvI7q2oBQ4J+muwJJkIUF76f0FI8y5sCl8MuUgScCQnQPqjIhuLUJy6T 2Huw== X-Received: by 10.69.12.227 with SMTP id et3mr12311406pbd.11.1432881003207; Thu, 28 May 2015 23:30:03 -0700 (PDT) Received: from localhost ([203.126.243.116]) by mx.google.com with ESMTPSA id y11sm4369441pdi.16.2015.05.28.23.30.01 (version=TLSv1.1 cipher=RC4-SHA bits=128/128); Thu, 28 May 2015 23:30:02 -0700 (PDT) From: Alistair Francis To: qemu-devel@nongnu.org, edgar.iglesias@xilinx.com Date: Fri, 29 May 2015 16:29:28 +1000 Message-Id: <41570da17f5c220dc5218d40bbaffad0d0993d5c.1432879373.git.alistair.francis@xilinx.com> X-Mailer: git-send-email 2.1.1 In-Reply-To: References: X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2607:f8b0:400e:c03::22e Cc: peter.crosthwaite@xilinx.com, rth@twiddle.net, afaerber@suse.de, alistair.francis@xilinx.com Subject: [Qemu-devel] [PATCH v3 1/6] target-microblaze: Fix up indentation X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org 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); } }