s390x/kvm: Fix coding style in handle_sigp()

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 <thuth@linux.vnet.ibm.com>
Acked-by: Cornelia Huck <cornelia.huck@de.ibm.com>
Signed-off-by: Jens Freimann <jfrei@linux.vnet.ibm.com>
Signed-off-by: Alexander Graf <agraf@suse.de>
This commit is contained in:
Thomas Huth 2013-12-17 14:22:06 +01:00 committed by Alexander Graf
parent cd7a0f4cf9
commit 0b9972a248
1 changed files with 12 additions and 12 deletions

View File

@ -642,18 +642,18 @@ static int handle_sigp(S390CPU *cpu, struct kvm_run *run, uint8_t ipa1)
} }
switch (order_code) { switch (order_code) {
case SIGP_RESTART: case SIGP_RESTART:
r = kvm_s390_cpu_restart(target_cpu); r = kvm_s390_cpu_restart(target_cpu);
break; break;
case SIGP_SET_ARCH: case SIGP_SET_ARCH:
/* make the caller panic */ /* make the caller panic */
return -1; return -1;
case SIGP_INITIAL_CPU_RESET: case SIGP_INITIAL_CPU_RESET:
r = s390_cpu_initial_reset(target_cpu); r = s390_cpu_initial_reset(target_cpu);
break; break;
default: default:
fprintf(stderr, "KVM: unknown SIGP: 0x%x\n", order_code); fprintf(stderr, "KVM: unknown SIGP: 0x%x\n", order_code);
break; break;
} }
out: out: