mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-24 01:09:38 -05:00
Bluetooth: Remove trailing semicolon in macros
Macros should not use a trailing semicolon. Signed-off-by: Meng Yu <yumeng18@huawei.com> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
This commit is contained in:
parent
c29fb5f650
commit
0f90d320b4
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue