From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:58635) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TwGQY-0001eL-Gs for qemu-devel@nongnu.org; Fri, 18 Jan 2013 13:12:33 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TwGQX-0007Be-BP for qemu-devel@nongnu.org; Fri, 18 Jan 2013 13:12:30 -0500 Received: from cantor2.suse.de ([195.135.220.15]:49831 helo=mx2.suse.de) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TwGQX-0007BU-4S for qemu-devel@nongnu.org; Fri, 18 Jan 2013 13:12:29 -0500 From: Alexander Graf Date: Fri, 18 Jan 2013 19:12:20 +0100 Message-Id: <1358532742-23156-7-git-send-email-agraf@suse.de> In-Reply-To: <1358532742-23156-1-git-send-email-agraf@suse.de> References: <1358532742-23156-1-git-send-email-agraf@suse.de> Subject: [Qemu-devel] [PATCH 6/8] s390x: fix indentation List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Blue Swirl , =?utf-8?q?Aur=C3=A9lien=20Jarno?= In one of the last commits we accidently got 3-space indentation into the tree. Fix it up so it's 4 spaces wide. Reported-by: Andreas Faerber Signed-off-by: Alexander Graf --- target-s390x/kvm.c | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/target-s390x/kvm.c b/target-s390x/kvm.c index 8bd3080..a63ee46 100644 --- a/target-s390x/kvm.c +++ b/target-s390x/kvm.c @@ -89,11 +89,11 @@ int kvm_arch_init_vcpu(CPUState *cpu) void kvm_arch_reset_vcpu(CPUState *cpu) { - /* The initial reset call is needed here to reset in-kernel - * vcpu data that we can't access directly from QEMU - * (i.e. with older kernels which don't support sync_regs/ONE_REG). - * Before this ioctl cpu_synchronize_state() is called in common kvm - * code (kvm-all) */ + /* The initial reset call is needed here to reset in-kernel + * vcpu data that we can't access directly from QEMU + * (i.e. with older kernels which don't support sync_regs/ONE_REG). + * Before this ioctl cpu_synchronize_state() is called in common kvm + * code (kvm-all) */ if (kvm_vcpu_ioctl(cpu, KVM_S390_INITIAL_RESET, NULL)) { perror("Can't reset vcpu\n"); } -- 1.6.0.2