From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:34968) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VtHAF-00013z-8p for qemu-devel@nongnu.org; Wed, 18 Dec 2013 08:27:56 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VtHA8-0002uL-Jz for qemu-devel@nongnu.org; Wed, 18 Dec 2013 08:27:50 -0500 Received: from cantor2.suse.de ([195.135.220.15]:36111 helo=mx2.suse.de) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VtHA8-0002tm-EX for qemu-devel@nongnu.org; Wed, 18 Dec 2013 08:27:44 -0500 From: Alexander Graf Date: Wed, 18 Dec 2013 14:27:37 +0100 Message-Id: <1387373261-26398-5-git-send-email-agraf@suse.de> In-Reply-To: <1387373261-26398-1-git-send-email-agraf@suse.de> References: <1387373261-26398-1-git-send-email-agraf@suse.de> Subject: [Qemu-devel] [PULL 4/8] s390x/kvm: Fix coding style in handle_sigp() List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: QEMU Developers Cc: Blue Swirl , Jens Freimann , Aurelien Jarno , Anthony Liguori , Thomas Huth From: Thomas Huth To make scripts/checkpatch.pl happy for the following patches, the coding style in handle_sigp() has to be fixed first. Signed-off-by: Thomas Huth Acked-by: Cornelia Huck Signed-off-by: Jens Freimann Signed-off-by: Alexander Graf --- target-s390x/kvm.c | 24 ++++++++++++------------ 1 files changed, 12 insertions(+), 12 deletions(-) diff --git a/target-s390x/kvm.c b/target-s390x/kvm.c index 5b243b4..8c54134 100644 --- a/target-s390x/kvm.c +++ b/target-s390x/kvm.c @@ -642,18 +642,18 @@ static int handle_sigp(S390CPU *cpu, struct kvm_run *run, uint8_t ipa1) } switch (order_code) { - case SIGP_RESTART: - r = kvm_s390_cpu_restart(target_cpu); - break; - case SIGP_SET_ARCH: - /* make the caller panic */ - return -1; - case SIGP_INITIAL_CPU_RESET: - r = s390_cpu_initial_reset(target_cpu); - break; - default: - fprintf(stderr, "KVM: unknown SIGP: 0x%x\n", order_code); - break; + case SIGP_RESTART: + r = kvm_s390_cpu_restart(target_cpu); + break; + case SIGP_SET_ARCH: + /* make the caller panic */ + return -1; + case SIGP_INITIAL_CPU_RESET: + r = s390_cpu_initial_reset(target_cpu); + break; + default: + fprintf(stderr, "KVM: unknown SIGP: 0x%x\n", order_code); + break; } out: -- 1.6.0.2