From: Peter Senna Tschudin Date: Fri, 7 Sep 2012 15:24:39 +0000 (+0200) Subject: Bluetooth: hci_ldisc.c: removes unnecessary semicolon X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=a20890d079aa3130ca3f4e10da207cab9df4a2bb;p=~shefty%2Frdma-dev.git Bluetooth: hci_ldisc.c: removes unnecessary semicolon removes unnecessary semicolon Found by Coccinelle: http://coccinelle.lip6.fr/ Signed-off-by: Peter Senna Tschudin Acked-by: Marcel Holtmann Signed-off-by: Gustavo Padovan --- diff --git a/drivers/bluetooth/hci_ldisc.c b/drivers/bluetooth/hci_ldisc.c index 74e0966b3ea..c8abce3d2d9 100644 --- a/drivers/bluetooth/hci_ldisc.c +++ b/drivers/bluetooth/hci_ldisc.c @@ -531,7 +531,7 @@ static int hci_uart_tty_ioctl(struct tty_struct *tty, struct file * file, default: err = n_tty_ioctl_helper(tty, file, cmd, arg); break; - }; + } return err; }