Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754056AbbF2Uhv (ORCPT ); Mon, 29 Jun 2015 16:37:51 -0400 Received: from mail.linuxfoundation.org ([140.211.169.12]:50292 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752821AbbF2Uhf (ORCPT ); Mon, 29 Jun 2015 16:37:35 -0400 Date: Mon, 29 Jun 2015 13:37:34 -0700 From: Greg KH To: Ravi Teja Darbha Cc: Larry.Finger@lwfinger.net, florian.c.schilhabel@googlemail.com, devel@driverdev.osuosl.org, krinkin.m.u@gmail.com, vthakkar1994@gmail.com, linux-kernel@vger.kernel.org, haggai.eran@gmail.com, sudipm.mukherjee@gmail.com Subject: Re: [PATCH RESEND] rtl8712:Fix checkpatch warning Message-ID: <20150629203734.GA21256@kroah.com> References: <5591A828.4040906@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <5591A828.4040906@gmail.com> User-Agent: Mutt/1.5.23+89 (0255b37be491) (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1351 Lines: 30 On Tue, Jun 30, 2015 at 01:48:48AM +0530, Ravi Teja Darbha wrote: > > Fix line over 80 characters warning. > > Signed-off-by: Ravi Teja Darbha > --- > drivers/staging/rtl8712/rtl8712_recv.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/drivers/staging/rtl8712/rtl8712_recv.c b/drivers/staging/rtl8712/rtl8712_recv.c > index fcb8c61..4fa2540 100644 > --- a/drivers/staging/rtl8712/rtl8712_recv.c > +++ b/drivers/staging/rtl8712/rtl8712_recv.c > @@ -58,8 +58,8 @@ int r8712_init_recv_priv(struct recv_priv *precvpriv, struct _adapter *padapter) > > /*init recv_buf*/ > _init_queue(&precvpriv->free_recv_buf_queue); > - precvpriv->pallocated_recv_buf = kzalloc(NR_RECVBUFF * sizeof(struct recv_buf) + 4, > - GFP_ATOMIC); > + precvpriv->pallocated_recv_buf = > + kzalloc(NR_RECVBUFF * sizeof(struct recv_buf) + 4, GFP_ATOMIC); Again, your patch is corrupted. Please test this out by emailing it to yourself first and seeing if it can be applied, instead of sending it out to the world in a broken format. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/