From mboxrd@z Thu Jan 1 00:00:00 1970 From: Paolo Bonzini Subject: Re: [PATCH] KVM: make the declaration of functions within 80 characters Date: Mon, 14 Sep 2015 18:43:38 +0200 Message-ID: <55F6F93A.7060705@redhat.com> References: <1441951973-5566-1-git-send-email-weiyang@linux.vnet.ibm.com> Mime-Version: 1.0 Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Cc: kvm@vger.kernel.org To: Wei Yang , gleb@kernel.org Return-path: Received: from mx1.redhat.com ([209.132.183.28]:44293 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755963AbbINQnn (ORCPT ); Mon, 14 Sep 2015 12:43:43 -0400 In-Reply-To: <1441951973-5566-1-git-send-email-weiyang@linux.vnet.ibm.com> Sender: kvm-owner@vger.kernel.org List-ID: On 11/09/2015 08:12, Wei Yang wrote: > After 'commit 0b8ba4a2b658 ("KVM: fix checkpatch.pl errors in > kvm/coalesced_mmio.h")', the declaration of the two function will exceed 80 > characters. > > This patch reduces the TAPs to make each line in 80 characters. > > Signed-off-by: Wei Yang > --- > virt/kvm/coalesced_mmio.h | 4 ++-- > 1 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/virt/kvm/coalesced_mmio.h b/virt/kvm/coalesced_mmio.h > index 5cbf190..6bca74c 100644 > --- a/virt/kvm/coalesced_mmio.h > +++ b/virt/kvm/coalesced_mmio.h > @@ -24,9 +24,9 @@ struct kvm_coalesced_mmio_dev { > int kvm_coalesced_mmio_init(struct kvm *kvm); > void kvm_coalesced_mmio_free(struct kvm *kvm); > int kvm_vm_ioctl_register_coalesced_mmio(struct kvm *kvm, > - struct kvm_coalesced_mmio_zone *zone); > + struct kvm_coalesced_mmio_zone *zone); > int kvm_vm_ioctl_unregister_coalesced_mmio(struct kvm *kvm, > - struct kvm_coalesced_mmio_zone *zone); > + struct kvm_coalesced_mmio_zone *zone); > > #else > > Ouch. I wonder what I did to get that result. Applied, thanks. Paolo