From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail.hugovil.com (mail.hugovil.com [162.243.120.170]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id CE14E1DFEA; Wed, 20 Dec 2023 20:53:58 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=hugovil.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=hugovil.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=hugovil.com header.i=@hugovil.com header.b="X3IHA7aj" DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=hugovil.com ; s=x; h=Subject:Content-Transfer-Encoding:Mime-Version:Message-Id:Cc:To:From :Date:subject:date:message-id:reply-to; bh=MVVfekeQJoCmkScdIbvk9byXZHy5RQRjJXKFZyDpgJg=; b=X3IHA7aj06mcvJvlsQC4uBCXD9 IDLE9vY+hGaP64xqgoDNL5Q91a4Gm0PgPLx/Rvz+MlVXin52cDeD1LPxjmLW04qzX34QbdXtHwAVt 7HmNgbX1Yo6K9eZP4HfLIIm3ZGcJLFptdBaWfwegbxyulDBon5Z52CexVLkrfXt2146Y=; Received: from modemcable168.174-80-70.mc.videotron.ca ([70.80.174.168]:39200 helo=pettiford) by mail.hugovil.com with esmtpa (Exim 4.92) (envelope-from ) id 1rG3ZR-0001ud-Nz; Wed, 20 Dec 2023 15:53:38 -0500 Date: Wed, 20 Dec 2023 15:53:37 -0500 From: Hugo Villeneuve To: Andy Shevchenko Cc: gregkh@linuxfoundation.org, jirislaby@kernel.org, jringle@gridpoint.com, kubakici@wp.pl, phil@raspberrypi.org, bo.svangard@embeddedart.se, linux-kernel@vger.kernel.org, linux-serial@vger.kernel.org, Hugo Villeneuve Message-Id: <20231220155337.f4a25eca97817c570fe2c4dd@hugovil.com> In-Reply-To: References: <20231219171903.3530985-1-hugo@hugovil.com> <20231219171903.3530985-19-hugo@hugovil.com> X-Mailer: Sylpheed 3.8.0beta1 (GTK+ 2.24.33; x86_64-pc-linux-gnu) Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-SA-Exim-Connect-IP: 70.80.174.168 X-SA-Exim-Mail-From: hugo@hugovil.com X-Spam-Level: X-Spam-Report: * -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP * -0.0 T_SCC_BODY_TEXT_LINE No description available. * -1.4 NICE_REPLY_A Looks like a legit reply (A) Subject: Re: [PATCH 18/18] serial: sc16is7xx: fix whitespace in sc16is7xx_startup() comments X-SA-Exim-Version: 4.2.1 (built Wed, 08 May 2019 21:11:16 +0000) X-SA-Exim-Scanned: Yes (on mail.hugovil.com) On Wed, 20 Dec 2023 18:04:55 +0200 Andy Shevchenko wrote: > On Tue, Dec 19, 2023 at 12:19:02PM -0500, Hugo Villeneuve wrote: > > From: Hugo Villeneuve > > > > Add missing space at end of comments. > > ... > > > - /* Reset FIFOs*/ > > + /* Reset FIFOs */ > > val = SC16IS7XX_FCR_RXRESET_BIT | SC16IS7XX_FCR_TXRESET_BIT; > > sc16is7xx_port_write(port, SC16IS7XX_FCR_REG, val); > > udelay(5); > > You can combine this with other comment style cleanups and spelling fixes > (if any). I.o.w. proof-read the code and check if there are any issues > besides noted ones. Ok. Hugo Villeneuve