Skip to content

Commit 45555c0

Browse files
Ingo Molnardavem330
authored andcommitted
bluetooth: fix warning in net/bluetooth/rfcomm/sock.c
fix this warning: net/bluetooth/rfcomm/sock.c: In function ‘rfcomm_sock_ioctl’: net/bluetooth/rfcomm/sock.c:795: warning: unused variable ‘sk’ perhaps BT_DEBUG() should be improved to do printf format checking instead of the #ifdef, but that looks quite intrusive: each bluetooth .c file undefines the macro. Signed-off-by: Ingo Molnar <[email protected]> Signed-off-by: David S. Miller <[email protected]>
1 parent ff0db04 commit 45555c0

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

net/bluetooth/rfcomm/sock.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -792,7 +792,9 @@ static int rfcomm_sock_getsockopt(struct socket *sock, int level, int optname, c
792792

793793
static int rfcomm_sock_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
794794
{
795+
#if defined(CONFIG_BT_RFCOMM_TTY) || defined(CONFIG_BT_RFCOMM_DEBUG)
795796
struct sock *sk = sock->sk;
797+
#endif
796798
int err;
797799

798800
BT_DBG("sk %p cmd %x arg %lx", sk, cmd, arg);

0 commit comments

Comments
 (0)