From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933547AbcI0LtW (ORCPT ); Tue, 27 Sep 2016 07:49:22 -0400 Received: from sender153-mail.zoho.com ([74.201.84.153]:25437 "EHLO sender153-mail.zoho.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932356AbcI0LtS (ORCPT ); Tue, 27 Sep 2016 07:49:18 -0400 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=zapps768; d=zoho.com; h=date:from:to:cc:subject:message-id:references:mime-version:content-type:in-reply-to:user-agent; b=RHiOv5dKLs8tepTh8PrObk8EVpVyJIegpYYBsgpyZ2YSaGy6Sf64dXYADFkXQbMx1bZeLdS0ULdv RBI62sLi0/DA1xrP3+wTF82vfQ0Ir0LYII+ozu33TK1VbhTt/vaT Date: Tue, 27 Sep 2016 08:49:08 -0300 From: Martin Alonso To: Greg KH Cc: forest@alittletooquiet.net, pasteka@kabsi.at, devel@driverdev.osuosl.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] staging: vt6656: Add spaces around '+' operator Message-ID: <20160927114908.GA17998@malonso-pc> References: <1474912104-13501-1-git-send-email-martin.alonso@zoho.com> <20160927111004.GA22674@kroah.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20160927111004.GA22674@kroah.com> User-Agent: Mutt/1.6.0 (2016-04-01) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Sep 27, 2016 at 01:10:04PM +0200, Greg KH wrote: > On Mon, Sep 26, 2016 at 02:48:24PM -0300, Martin Alonso wrote: > > Fix coding style issue "spaces preferred around '+' > > detected by checkpatch.pl in dpc.c file. > > > > Signed-off-by: Martin Alonso > > --- > > drivers/staging/vt6656/dpc.c | 4 ++-- > > 1 file changed, 2 insertions(+), 2 deletions(-) > > > > diff --git a/drivers/staging/vt6656/dpc.c b/drivers/staging/vt6656/dpc.c > > index 6019aac..900cd5c 100644 > > --- a/drivers/staging/vt6656/dpc.c > > +++ b/drivers/staging/vt6656/dpc.c > > @@ -75,8 +75,8 @@ int vnt_rx_data(struct vnt_private *priv, struct vnt_rcb *ptr_rcb, > > > > skb_data = (u8 *)skb->data; > > > > - rx_sts = skb_data+4; > > - rx_rate = skb_data+5; > > + rx_sts = skb_data + 4; > > + rx_rate = skb_data + 5; > > > > /* real Frame Size = USBframe_size -4WbkStatus - 4RxStatus */ > > /* -8TSF - 4RSR - 4SQ3 - ?Padding */ > > -- > > 2.8.0 > > > > Doesn't apply to my tree, did someone do this before you? You are > working against linux-next, right? > > thanks, > > greg k-h I wasn't working against linux-next as i though. Sorry for the annoyance.