From mboxrd@z Thu Jan 1 00:00:00 1970 From: Dong Aisheng Subject: Re: [PATCH] tty: serial: lpuart: fix semicolon.cocci warnings Date: Tue, 13 Jun 2017 10:38:18 +0800 Message-ID: <20170613023818.GB15770@b29396-OptiPlex-7040> References: <201706130841.YZhbOH9x%fengguang.wu@intel.com> <20170613002841.GA25353@lkp-wsm-ep1> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Content-Disposition: inline In-Reply-To: <20170613002841.GA25353@lkp-wsm-ep1> Sender: linux-kernel-owner@vger.kernel.org To: kbuild test robot Cc: Dong Aisheng , kbuild-all@01.org, linux-serial@vger.kernel.org, linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, gregkh@linuxfoundation.org, jslaby@suse.com, fugang.duan@nxp.com, stefan@agner.ch, Mingkai.Hu@nxp.com, yangbo.lu@nxp.com, nikita.yoush@cogentembedded.com, andy.shevchenko@gmail.com, fengguang.wu@intel.com List-Id: linux-serial@vger.kernel.org Hi Fengguang, On Tue, Jun 13, 2017 at 08:28:41AM +0800, kbuild test robot wrote: > drivers/tty/serial/fsl_lpuart.c:305:2-3: Unneeded semicolon > > > Remove unneeded semicolon. > > Generated by: scripts/coccinelle/misc/semicolon.cocci > > CC: Dong Aisheng > Signed-off-by: Fengguang Wu Seems not catched by checkpatch. > --- > > fsl_lpuart.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > --- a/drivers/tty/serial/fsl_lpuart.c > +++ b/drivers/tty/serial/fsl_lpuart.c > @@ -302,7 +302,7 @@ static inline void lpuart32_write(struct > case UPIO_MEM32BE: > iowrite32be(val, port->membase + off); > break; > - }; > + } lpuart32_read needs the same fixing. diff --git a/drivers/tty/serial/fsl_lpuart.c b/drivers/tty/serial/fsl_lpuart.c index a66ed23..ed0bf18 100644 --- a/drivers/tty/serial/fsl_lpuart.c +++ b/drivers/tty/serial/fsl_lpuart.c @@ -288,7 +288,7 @@ static inline u32 lpuart32_read(struct uart_port *port, u32 off) return ioread32be(port->membase + off); default: return 0; - }; + } } static inline void lpuart32_write(struct uart_port *port, u32 val, @@ -301,7 +301,7 @@ static inline void lpuart32_write(struct uart_port *port, u32 val, case UPIO_MEM32BE: iowrite32be(val, port->membase + off); break; - }; + } } Thanks for the catching. Regards Dong Aisheng > } > > static void lpuart_stop_tx(struct uart_port *port)