This fixes the following checkpatch.pl errors: ERROR: code indent should use tabs where possible + vcpu->arch.pio.count = 0;$ ERROR: code indent should use tabs where possible + return ret;$ Fixes: 0d33b1baeb6c ("KVM: x86: leave vcpu->arch.pio.count alone in emulator_pio_in_out") Signed-off-by: Carlos Llamas <cmllamas@xxxxxxxxxx> --- arch/x86/kvm/x86.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c index b26647a5ea22..ff04b78ece5f 100644 --- a/arch/x86/kvm/x86.c +++ b/arch/x86/kvm/x86.c @@ -6980,9 +6980,9 @@ static int emulator_pio_out(struct kvm_vcpu *vcpu, int size, trace_kvm_pio(KVM_PIO_OUT, port, size, count, vcpu->arch.pio_data); ret = emulator_pio_in_out(vcpu, size, port, count, false); if (ret) - vcpu->arch.pio.count = 0; + vcpu->arch.pio.count = 0; - return ret; + return ret; } static int emulator_pio_out_emulated(struct x86_emulate_ctxt *ctxt, -- 2.33.1.1089.g2158813163f-goog