From mboxrd@z Thu Jan 1 00:00:00 1970 From: Julia Lawall Subject: [PATCH] can: spi: hi311x: fix semicolon.cocci warnings (fwd) Date: Mon, 14 Nov 2016 22:36:34 +0100 (CET) Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Return-path: Sender: linux-can-owner@vger.kernel.org Cc: wg@grandegger.com, mkl@pengutronix.de, robh+dt@kernel.org, mark.rutland@arm.com, linux-can@vger.kernel.org, netdev@vger.kernel.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, Akshay Bhat , Akshay Bhat List-Id: devicetree@vger.kernel.org Remove unneeded semicolon. Generated by: scripts/coccinelle/misc/semicolon.cocci CC: Akshay Bhat Signed-off-by: Julia Lawall Signed-off-by: Fengguang Wu --- It's a minor issue, but may as well fix it up now. The tree this code is from is as follows: url: https://github.com/0day-ci/linux/commits/Akshay-Bhat/can-holt_hi311x-documen t-device-tree-bindings/20161115-034509 :::::: branch date: 2 hours ago :::::: commit date: 2 hours ago hi311x.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/drivers/net/can/spi/hi311x.c +++ b/drivers/net/can/spi/hi311x.c @@ -673,7 +673,7 @@ static irqreturn_t hi3110_can_ist(int ir while (!(HI3110_STAT_RXFMTY & hi3110_read(spi, HI3110_READ_STATF))) { hi3110_hw_rx(spi); - }; + } intf = hi3110_read(spi, HI3110_READ_INTF); eflag = hi3110_read(spi, HI3110_READ_ERR);