From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-8.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE, SPF_PASS autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id B7DCAC43219 for ; Mon, 28 Dec 2020 23:17:06 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 9FFB12222A for ; Mon, 28 Dec 2020 23:17:06 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729285AbgL1Wzo (ORCPT ); Mon, 28 Dec 2020 17:55:44 -0500 Received: from smtprelay0192.hostedemail.com ([216.40.44.192]:47600 "EHLO smtprelay.hostedemail.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1729333AbgL1TsL (ORCPT ); Mon, 28 Dec 2020 14:48:11 -0500 Received: from filter.hostedemail.com (clb03-v110.bra.tucows.net [216.40.38.60]) by smtprelay05.hostedemail.com (Postfix) with ESMTP id 452531802926E; Mon, 28 Dec 2020 19:47:30 +0000 (UTC) X-Session-Marker: 6A6F6540706572636865732E636F6D X-HE-Tag: dust30_4a09e1827496 X-Filterd-Recvd-Size: 2258 Received: from [192.168.1.159] (unknown [47.151.137.21]) (Authenticated sender: joe@perches.com) by omf19.hostedemail.com (Postfix) with ESMTPA; Mon, 28 Dec 2020 19:47:28 +0000 (UTC) Message-ID: <4aeb47e4aa643181e462328104ef63c66eaf587b.camel@perches.com> Subject: Re: [PATCH 8455/8455] staging: rtl8188eu: core: fixed a comment format issue. From: Joe Perches To: Greg KH , Daniel West Cc: Larry.Finger@lwfinger.net, devel@driverdev.osuosl.org, insafonov@gmail.com, gustavoars@kernel.org, andrealmeidap1996@gmail.com, linux-kernel@vger.kernel.org, yepeilin.cs@gmail.com Date: Mon, 28 Dec 2020 11:47:27 -0800 In-Reply-To: References: <20201219224312.380126-1-daniel.west.dev@gmail.com> Content-Type: text/plain; charset="ISO-8859-1" User-Agent: Evolution 3.38.1-1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, 2020-12-28 at 15:09 +0100, Greg KH wrote: > On Sat, Dec 19, 2020 at 02:43:12PM -0800, Daniel West wrote: > > Fixed a checkpatch warning: > > > > WARNING: Block comments use * on subsequent lines > >  #4595: FILE: drivers/staging/rtl8188eu/core/rtw_mlme_ext.c:4595: > > +/**************************************************************************** > > + > > > > The code is full of comments like this. Should the coding style > > be inforced here, even when there is a logic to the way the code > > was broken up? [] > > diff --git a/drivers/staging/rtl8188eu/core/rtw_mlme_ext.c b/drivers/staging/rtl8188eu/core/rtw_mlme_ext.c [] > > @@ -4591,11 +4591,10 @@ void mlmeext_sta_del_event_callback(struct adapter *padapter) > >   } > >  } > >   > > > > -/**************************************************************************** > > - > > -Following are the functions for the timer handlers > > - > > -*****************************************************************************/ > > +/* > > + * > > + *Following are the functions for the timer handlers > > + */ > > Does that look correct? Make it all one line please. Just: /* timer handler functions */ would be simpler. And the code is mostly a horror to read.