aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--net/bluetooth/rfcomm/sock.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/net/bluetooth/rfcomm/sock.c b/net/bluetooth/rfcomm/sock.c
index ffaa6b02d491..d3fc6fca38d0 100644
--- a/net/bluetooth/rfcomm/sock.c
+++ b/net/bluetooth/rfcomm/sock.c
@@ -787,12 +787,10 @@ static int rfcomm_sock_getsockopt(struct socket *sock, int level, int optname, c
787 787
788static int rfcomm_sock_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg) 788static int rfcomm_sock_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
789{ 789{
790#if defined(CONFIG_BT_RFCOMM_TTY) || defined(CONFIG_BT_RFCOMM_DEBUG) 790 struct sock *sk __maybe_unused = sock->sk;
791 struct sock *sk = sock->sk;
792#endif
793 int err; 791 int err;
794 792
795 BT_DBG("sk %p cmd %x arg %lx", sock, cmd, arg); 793 BT_DBG("sk %p cmd %x arg %lx", sk, cmd, arg);
796 794
797 err = bt_sock_ioctl(sock, cmd, arg); 795 err = bt_sock_ioctl(sock, cmd, arg);
798 796