diff options
author | Ingo Molnar <mingo@elte.hu> | 2008-11-25 19:59:21 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-11-25 19:59:21 -0500 |
commit | 45555c0ed436b8b06eeaa5c524a3377e6d24fb45 (patch) | |
tree | b339a04dbcb47cfaf3c3a489624b7b404e229be5 /net/bluetooth/rfcomm | |
parent | ff0db0490a2eb6db4f03870987c5c8e3dd81e747 (diff) |
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 <mingo@elte.hu>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/bluetooth/rfcomm')
-rw-r--r-- | net/bluetooth/rfcomm/sock.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/bluetooth/rfcomm/sock.c b/net/bluetooth/rfcomm/sock.c index 8a972b6ba85f..bc0d4a7ce6ae 100644 --- a/net/bluetooth/rfcomm/sock.c +++ b/net/bluetooth/rfcomm/sock.c | |||
@@ -792,7 +792,9 @@ static int rfcomm_sock_getsockopt(struct socket *sock, int level, int optname, c | |||
792 | 792 | ||
793 | static int rfcomm_sock_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg) | 793 | static int rfcomm_sock_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg) |
794 | { | 794 | { |
795 | #if defined(CONFIG_BT_RFCOMM_TTY) || defined(CONFIG_BT_RFCOMM_DEBUG) | ||
795 | struct sock *sk = sock->sk; | 796 | struct sock *sk = sock->sk; |
797 | #endif | ||
796 | int err; | 798 | int err; |
797 | 799 | ||
798 | BT_DBG("sk %p cmd %x arg %lx", sk, cmd, arg); | 800 | BT_DBG("sk %p cmd %x arg %lx", sk, cmd, arg); |