From: Stephen Rothwell <sfr@xxxxxxxxxxxxxxxx> Date: Tue, 9 Dec 2008 17:29:54 +1100 > The linux-next build (arm xm_x2xx_defconfig) fails like this: > > net/bluetooth/rfcomm/sock.c: In function 'rfcomm_sock_ioctl': > net/bluetooth/rfcomm/sock.c:795: error: 'sk' undeclared (first use in this function) > > Introduced (I think) by commit a418b893a6af11ae73c762ed5b76c1bad6dc19d8 > ("Bluetooth: Enable per-module dynamic debug messages"). I just pushed the following fix for this, thanks Stephen: bluetooth: Fix rfcomm_sock_ioctl() build failure with debugging enabled. It's 'sock' not 'sk'. Signed-off-by: David S. Miller <davem@xxxxxxxxxxxxx> --- net/bluetooth/rfcomm/sock.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/net/bluetooth/rfcomm/sock.c b/net/bluetooth/rfcomm/sock.c index ad00cbf..ffaa6b0 100644 --- a/net/bluetooth/rfcomm/sock.c +++ b/net/bluetooth/rfcomm/sock.c @@ -792,7 +792,7 @@ static int rfcomm_sock_ioctl(struct socket *sock, unsigned int cmd, unsigned lon #endif int err; - BT_DBG("sk %p cmd %x arg %lx", sk, cmd, arg); + BT_DBG("sk %p cmd %x arg %lx", sock, cmd, arg); err = bt_sock_ioctl(sock, cmd, arg); -- 1.5.6.5 -- To unsubscribe from this list: send the line "unsubscribe linux-next" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html