From mboxrd@z Thu Jan 1 00:00:00 1970 From: Paolo Bonzini Subject: Re: [PATCH 1/2] KVM: fix checkpatch.pl errors in kvm/async_pf.h Date: Wed, 17 Jun 2015 13:47:33 +0200 Message-ID: <55815E55.9050304@redhat.com> References: <1434454440-6096-1-git-send-email-kmulvey@linux.com> Mime-Version: 1.0 Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Cc: Kevin Mulvey To: Kevin Mulvey , Gleb Natapov , kvm@vger.kernel.org, linux-kernel@vger.kernel.org Return-path: Received: from mx1.redhat.com ([209.132.183.28]:33826 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755032AbbFQLri (ORCPT ); Wed, 17 Jun 2015 07:47:38 -0400 In-Reply-To: <1434454440-6096-1-git-send-email-kmulvey@linux.com> Sender: kvm-owner@vger.kernel.org List-ID: On 16/06/2015 13:33, Kevin Mulvey wrote: > fix brace spacing > > Signed-off-by: Kevin Mulvey > --- > virt/kvm/async_pf.h | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/virt/kvm/async_pf.h b/virt/kvm/async_pf.h > index e7ef6447..ec4cfa2 100644 > --- a/virt/kvm/async_pf.h > +++ b/virt/kvm/async_pf.h > @@ -29,8 +29,8 @@ void kvm_async_pf_deinit(void); > void kvm_async_pf_vcpu_init(struct kvm_vcpu *vcpu); > #else > #define kvm_async_pf_init() (0) > -#define kvm_async_pf_deinit() do{}while(0) > -#define kvm_async_pf_vcpu_init(C) do{}while(0) > +#define kvm_async_pf_deinit() do {} while (0) > +#define kvm_async_pf_vcpu_init(C) do {} while (0) > #endif > > #endif > Applied both, thanks. Paolo