Commit 0f90d320 authored by Meng Yu's avatar Meng Yu Committed by Marcel Holtmann
Browse files

Bluetooth: Remove trailing semicolon in macros



Macros should not use a trailing semicolon.

Signed-off-by: default avatarMeng Yu <yumeng18@huawei.com>
Signed-off-by: default avatarMarcel Holtmann <marcel@holtmann.org>
parent c29fb5f6
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -51,8 +51,8 @@ struct sco_conn {
	unsigned int    mtu;
};

#define sco_conn_lock(c)	spin_lock(&c->lock);
#define sco_conn_unlock(c)	spin_unlock(&c->lock);
#define sco_conn_lock(c)	spin_lock(&c->lock)
#define sco_conn_unlock(c)	spin_unlock(&c->lock)

static void sco_sock_close(struct sock *sk);
static void sco_sock_kill(struct sock *sk);