From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S935350AbcIFNTK (ORCPT ); Tue, 6 Sep 2016 09:19:10 -0400 Received: from mail-wm0-f68.google.com ([74.125.82.68]:34295 "EHLO mail-wm0-f68.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932806AbcIFNTI (ORCPT ); Tue, 6 Sep 2016 09:19:08 -0400 Date: Tue, 6 Sep 2016 15:19:03 +0200 From: Fernando Apesteguia To: Andrey Utkin Cc: lidza.louina@gmail.com, gregkh@linuxfoundation.org, driverdev-devel@linuxdriverproject.org, linux-kernel@vger.kernel.org, devel@driverdev.osuosl.org Subject: Re: [PATCH] staging: dgnc: Fix multi line comment alignment Message-ID: <20160906131903.GA4205@erazer> References: <20160905182832.GA10312@erazer> <20160905204530.vdodbxpqvo5wrvj7@zver> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20160905204530.vdodbxpqvo5wrvj7@zver> 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 Mon, Sep 05, 2016 at 11:45:30PM +0300, Andrey Utkin wrote: > On Mon, Sep 05, 2016 at 08:28:32PM +0200, Fernando Apesteguia wrote: > > Fix alignment in multi line comment block. > > > > Remove extra '*' to use the preferred comment style as in Documentation/CodingStyle > > > > Signed-off-by: Fernando Apesteguia > > > > --- > > drivers/staging/dgnc/dgnc_driver.c | 50 +++++++++++++++++++------------------- > > 1 file changed, 25 insertions(+), 25 deletions(-) > > > > diff --git a/drivers/staging/dgnc/dgnc_driver.c b/drivers/staging/dgnc/dgnc_driver.c > > index cc6105a..01e948c 100644 > > --- a/drivers/staging/dgnc/dgnc_driver.c > > +++ b/drivers/staging/dgnc/dgnc_driver.c > > @@ -602,31 +602,31 @@ static void dgnc_do_remap(struct dgnc_board *brd) > > brd->re_map_membase = ioremap(brd->membase, 0x1000); > > } > > > > -/***************************************************************************** > > -* > > -* Function: > > -* > > -* dgnc_poll_handler > > -* > > -* Author: > > -* > > -* Scott H Kilau > > -* > > -* Parameters: > > -* > > -* dummy -- ignored > > -* > > -* Return Values: > > -* > > -* none > > -* > > -* Description: > > -* > > -* As each timer expires, it determines (a) whether the "transmit" > > -* waiter needs to be woken up, and (b) whether the poller needs to > > -* be rescheduled. > > -* > > -******************************************************************************/ > > +/* > > + * > > + * Function: > > + * > > + * dgnc_poll_handler > > + * > > + * Author: > > + * > > + * Scott H Kilau > > + * > > + * Parameters: > > + * > > + * dummy -- ignored > > + * > > + * Return Values: > > + * > > + * none > > + * > > + * Description: > > + * > > + * As each timer expires, it determines (a) whether the "transmit" > > + * waiter needs to be woken up, and (b) whether the poller needs to > > + * be rescheduled. > > + * > > + */ > > > > static void dgnc_poll_handler(ulong dummy) > > { > > -- > > 2.7.4 > > Changing first and last lines of that comment should be enough, but all > lines got changed. I'd (re)submit it with just first and last lines > changed. Sorry, but I fail to see how I can align all the lines by changing just the first and last ones.