From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932968AbcJMOYD (ORCPT ); Thu, 13 Oct 2016 10:24:03 -0400 Received: from mail-lf0-f67.google.com ([209.85.215.67]:33453 "EHLO mail-lf0-f67.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932869AbcJMOX4 (ORCPT ); Thu, 13 Oct 2016 10:23:56 -0400 Date: Thu, 13 Oct 2016 17:23:45 +0300 From: Mikhail Golubev To: Greg KH Cc: forest@alittletooquiet.net, devel@driverdev.osuosl.org, linux-kernel@vger.kernel.org Subject: Re: Re: [PATCH] staging:vt6656:baseband.h: fix function definition argument without identifier name issue Message-ID: <20161013142345.GA17219@mike-ubuntu> References: <1476359418-12842-1-git-send-email-golubev.mikhail@gmail.com> <20161013120602.GA13968@kroah.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20161013120602.GA13968@kroah.com> User-Agent: Mutt/1.5.24 (2015-08-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Oct 13, 2016 at 02:06:02PM +0200, Greg KH wrote: > On Thu, Oct 13, 2016 at 02:50:18PM +0300, Mikhail Golubev wrote: > > Function definitions arguments should also have an identifier name as reported by checkpatch.pl. > > Please wrap your changelog comments at 72 columns. > > > > > Signed-off-by: Mikhail Golubev > > --- > > drivers/staging/vt6656/baseband.h | 20 ++++++++++---------- > > 1 file changed, 10 insertions(+), 10 deletions(-) > > > > diff --git a/drivers/staging/vt6656/baseband.h b/drivers/staging/vt6656/baseband.h > > index 7cc1387..fe1c25c 100644 > > --- a/drivers/staging/vt6656/baseband.h > > +++ b/drivers/staging/vt6656/baseband.h > > @@ -86,15 +86,15 @@ struct vnt_phy_field { > > unsigned int vnt_get_frame_time(u8 preamble_type, u8 pkt_type, > > unsigned int frame_length, u16 tx_rate); > > > > -void vnt_get_phy_field(struct vnt_private *, u32 frame_length, > > - u16 tx_rate, u8 pkt_type, struct vnt_phy_field *); > > - > > -void vnt_set_short_slot_time(struct vnt_private *); > > -void vnt_set_vga_gain_offset(struct vnt_private *, u8); > > -void vnt_set_antenna_mode(struct vnt_private *, u8); > > -int vnt_vt3184_init(struct vnt_private *); > > -void vnt_set_deep_sleep(struct vnt_private *); > > -void vnt_exit_deep_sleep(struct vnt_private *); > > -void vnt_update_pre_ed_threshold(struct vnt_private *, int scanning); > > +void vnt_get_phy_field(struct vnt_private *priv, u32 frame_length, > > + u16 tx_rate, u8 pkt_type, struct vnt_phy_field *phy); > > + > > Really? Since when is this a coding style requirement? > This requirement is really new. It was proposed by Joe Perches at 26 Sep 2016: [PATCH] checkpatch: Add warning for unnamed function definition. Should this type of warnings be fixed here? > Don't use --strict, it's not worth it for stuff like this, there are far > worse-off files in drivers/staging/ than this one. > > thanks, > > greg k-h Best wishes, Mike.