diff options
| author | Marcel Holtmann <marcel@holtmann.org> | 2008-11-30 06:17:28 -0500 |
|---|---|---|
| committer | Marcel Holtmann <marcel@holtmann.org> | 2008-11-30 06:17:28 -0500 |
| commit | a418b893a6af11ae73c762ed5b76c1bad6dc19d8 (patch) | |
| tree | a24f9192988e4d55077d77420b90dc3cfd647a06 | |
| parent | 5ddd4a60683f819982b7bd3d1aee972f931c11a3 (diff) | |
Bluetooth: Enable per-module dynamic debug messages
With the introduction of CONFIG_DYNAMIC_PRINTK_DEBUG it is possible to
allow debugging without having to recompile the kernel. This patch turns
all BT_DBG() calls into pr_debug() to support dynamic debug messages.
As a side effect all CONFIG_BT_*_DEBUG statements are now removed and
some broken debug entries have been fixed.
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
31 files changed, 11 insertions, 157 deletions
diff --git a/drivers/bluetooth/bcm203x.c b/drivers/bluetooth/bcm203x.c index ee40201c727..eafd4af0746 100644 --- a/drivers/bluetooth/bcm203x.c +++ b/drivers/bluetooth/bcm203x.c | |||
| @@ -37,11 +37,6 @@ | |||
| 37 | 37 | ||
| 38 | #include <net/bluetooth/bluetooth.h> | 38 | #include <net/bluetooth/bluetooth.h> |
| 39 | 39 | ||
| 40 | #ifndef CONFIG_BT_HCIBCM203X_DEBUG | ||
| 41 | #undef BT_DBG | ||
| 42 | #define BT_DBG(D...) | ||
| 43 | #endif | ||
| 44 | |||
| 45 | #define VERSION "1.2" | 40 | #define VERSION "1.2" |
| 46 | 41 | ||
| 47 | static struct usb_device_id bcm203x_table[] = { | 42 | static struct usb_device_id bcm203x_table[] = { |
| @@ -199,7 +194,7 @@ static int bcm203x_probe(struct usb_interface *intf, const struct usb_device_id | |||
| 199 | return -EIO; | 194 | return -EIO; |
| 200 | } | 195 | } |
| 201 | 196 | ||
| 202 | BT_DBG("minidrv data %p size %d", firmware->data, firmware->size); | 197 | BT_DBG("minidrv data %p size %zu", firmware->data, firmware->size); |
| 203 | 198 | ||
| 204 | size = max_t(uint, firmware->size, 4096); | 199 | size = max_t(uint, firmware->size, 4096); |
| 205 | 200 | ||
| @@ -227,7 +222,7 @@ static int bcm203x_probe(struct usb_interface *intf, const struct usb_device_id | |||
| 227 | return -EIO; | 222 | return -EIO; |
| 228 | } | 223 | } |
| 229 | 224 | ||
| 230 | BT_DBG("firmware data %p size %d", firmware->data, firmware->size); | 225 | BT_DBG("firmware data %p size %zu", firmware->data, firmware->size); |
| 231 | 226 | ||
| 232 | data->fw_data = kmalloc(firmware->size, GFP_KERNEL); | 227 | data->fw_data = kmalloc(firmware->size, GFP_KERNEL); |
| 233 | if (!data->fw_data) { | 228 | if (!data->fw_data) { |
diff --git a/drivers/bluetooth/bfusb.c b/drivers/bluetooth/bfusb.c index 90a09463463..d3f14bee0f1 100644 --- a/drivers/bluetooth/bfusb.c +++ b/drivers/bluetooth/bfusb.c | |||
| @@ -38,11 +38,6 @@ | |||
| 38 | #include <net/bluetooth/bluetooth.h> | 38 | #include <net/bluetooth/bluetooth.h> |
| 39 | #include <net/bluetooth/hci_core.h> | 39 | #include <net/bluetooth/hci_core.h> |
| 40 | 40 | ||
| 41 | #ifndef CONFIG_BT_HCIBFUSB_DEBUG | ||
| 42 | #undef BT_DBG | ||
| 43 | #define BT_DBG(D...) | ||
| 44 | #endif | ||
| 45 | |||
| 46 | #define VERSION "1.2" | 41 | #define VERSION "1.2" |
| 47 | 42 | ||
| 48 | static struct usb_driver bfusb_driver; | 43 | static struct usb_driver bfusb_driver; |
| @@ -221,7 +216,7 @@ static int bfusb_rx_submit(struct bfusb_data *data, struct urb *urb) | |||
| 221 | struct sk_buff *skb; | 216 | struct sk_buff *skb; |
| 222 | int err, pipe, size = HCI_MAX_FRAME_SIZE + 32; | 217 | int err, pipe, size = HCI_MAX_FRAME_SIZE + 32; |
| 223 | 218 | ||
| 224 | BT_DBG("bfusb %p urb %p", bfusb, urb); | 219 | BT_DBG("bfusb %p urb %p", data, urb); |
| 225 | 220 | ||
| 226 | if (!urb && !(urb = usb_alloc_urb(0, GFP_ATOMIC))) | 221 | if (!urb && !(urb = usb_alloc_urb(0, GFP_ATOMIC))) |
| 227 | return -ENOMEM; | 222 | return -ENOMEM; |
| @@ -354,7 +349,7 @@ static void bfusb_rx_complete(struct urb *urb) | |||
| 354 | int count = urb->actual_length; | 349 | int count = urb->actual_length; |
| 355 | int err, hdr, len; | 350 | int err, hdr, len; |
| 356 | 351 | ||
| 357 | BT_DBG("bfusb %p urb %p skb %p len %d", bfusb, urb, skb, skb->len); | 352 | BT_DBG("bfusb %p urb %p skb %p len %d", data, urb, skb, skb->len); |
| 358 | 353 | ||
| 359 | read_lock(&data->lock); | 354 | read_lock(&data->lock); |
| 360 | 355 | ||
| @@ -691,7 +686,7 @@ static int bfusb_probe(struct usb_interface *intf, const struct usb_device_id *i | |||
| 691 | goto error; | 686 | goto error; |
| 692 | } | 687 | } |
| 693 | 688 | ||
| 694 | BT_DBG("firmware data %p size %d", firmware->data, firmware->size); | 689 | BT_DBG("firmware data %p size %zu", firmware->data, firmware->size); |
| 695 | 690 | ||
| 696 | if (bfusb_load_firmware(data, firmware->data, firmware->size) < 0) { | 691 | if (bfusb_load_firmware(data, firmware->data, firmware->size) < 0) { |
| 697 | BT_ERR("Firmware loading failed"); | 692 | BT_ERR("Firmware loading failed"); |
diff --git a/drivers/bluetooth/bpa10x.c b/drivers/bluetooth/bpa10x.c index 4f0a57236d2..c115285867c 100644 --- a/drivers/bluetooth/bpa10x.c +++ b/drivers/bluetooth/bpa10x.c | |||
| @@ -35,11 +35,6 @@ | |||
| 35 | #include <net/bluetooth/bluetooth.h> | 35 | #include <net/bluetooth/bluetooth.h> |
| 36 | #include <net/bluetooth/hci_core.h> | 36 | #include <net/bluetooth/hci_core.h> |
| 37 | 37 | ||
| 38 | #ifndef CONFIG_BT_HCIBPA10X_DEBUG | ||
| 39 | #undef BT_DBG | ||
| 40 | #define BT_DBG(D...) | ||
| 41 | #endif | ||
| 42 | |||
| 43 | #define VERSION "0.10" | 38 | #define VERSION "0.10" |
| 44 | 39 | ||
| 45 | static struct usb_device_id bpa10x_table[] = { | 40 | static struct usb_device_id bpa10x_table[] = { |
diff --git a/drivers/bluetooth/btsdio.c b/drivers/bluetooth/btsdio.c index f2ada0c6548..7e298275c8f 100644 --- a/drivers/bluetooth/btsdio.c +++ b/drivers/bluetooth/btsdio.c | |||
| @@ -37,11 +37,6 @@ | |||
| 37 | #include <net/bluetooth/bluetooth.h> | 37 | #include <net/bluetooth/bluetooth.h> |
| 38 | #include <net/bluetooth/hci_core.h> | 38 | #include <net/bluetooth/hci_core.h> |
| 39 | 39 | ||
| 40 | #ifndef CONFIG_BT_HCIBTSDIO_DEBUG | ||
| 41 | #undef BT_DBG | ||
| 42 | #define BT_DBG(D...) | ||
| 43 | #endif | ||
| 44 | |||
| 45 | #define VERSION "0.1" | 40 | #define VERSION "0.1" |
| 46 | 41 | ||
| 47 | static const struct sdio_device_id btsdio_table[] = { | 42 | static const struct sdio_device_id btsdio_table[] = { |
diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c index 7f7526c186d..b5fbda6d490 100644 --- a/drivers/bluetooth/btusb.c +++ b/drivers/bluetooth/btusb.c | |||
| @@ -35,12 +35,6 @@ | |||
| 35 | #include <net/bluetooth/bluetooth.h> | 35 | #include <net/bluetooth/bluetooth.h> |
| 36 | #include <net/bluetooth/hci_core.h> | 36 | #include <net/bluetooth/hci_core.h> |
| 37 | 37 | ||
| 38 | //#define CONFIG_BT_HCIBTUSB_DEBUG | ||
| 39 | #ifndef CONFIG_BT_HCIBTUSB_DEBUG | ||
| 40 | #undef BT_DBG | ||
| 41 | #define BT_DBG(D...) | ||
| 42 | #endif | ||
| 43 | |||
| 44 | #define VERSION "0.4" | 38 | #define VERSION "0.4" |
| 45 | 39 | ||
| 46 | static int ignore_dga; | 40 | static int ignore_dga; |
diff --git a/drivers/bluetooth/hci_bcsp.c b/drivers/bluetooth/hci_bcsp.c index 7938062c1cc..894b2cb11ea 100644 --- a/drivers/bluetooth/hci_bcsp.c +++ b/drivers/bluetooth/hci_bcsp.c | |||
| @@ -47,11 +47,6 @@ | |||
| 47 | 47 | ||
| 48 | #include "hci_uart.h" | 48 | #include "hci_uart.h" |
| 49 | 49 | ||
| 50 | #ifndef CONFIG_BT_HCIUART_DEBUG | ||
| 51 | #undef BT_DBG | ||
| 52 | #define BT_DBG( A... ) | ||
| 53 | #endif | ||
| 54 | |||
| 55 | #define VERSION "0.3" | 50 | #define VERSION "0.3" |
| 56 | 51 | ||
| 57 | static int txcrc = 1; | 52 | static int txcrc = 1; |
diff --git a/drivers/bluetooth/hci_h4.c b/drivers/bluetooth/hci_h4.c index bfbae14cf93..b0fafb05599 100644 --- a/drivers/bluetooth/hci_h4.c +++ b/drivers/bluetooth/hci_h4.c | |||
| @@ -46,11 +46,6 @@ | |||
| 46 | 46 | ||
| 47 | #include "hci_uart.h" | 47 | #include "hci_uart.h" |
| 48 | 48 | ||
| 49 | #ifndef CONFIG_BT_HCIUART_DEBUG | ||
| 50 | #undef BT_DBG | ||
| 51 | #define BT_DBG( A... ) | ||
| 52 | #endif | ||
| 53 | |||
| 54 | #define VERSION "1.2" | 49 | #define VERSION "1.2" |
| 55 | 50 | ||
| 56 | struct h4_struct { | 51 | struct h4_struct { |
diff --git a/drivers/bluetooth/hci_ldisc.c b/drivers/bluetooth/hci_ldisc.c index cb46bf52a19..af761dc434f 100644 --- a/drivers/bluetooth/hci_ldisc.c +++ b/drivers/bluetooth/hci_ldisc.c | |||
| @@ -46,11 +46,6 @@ | |||
| 46 | 46 | ||
| 47 | #include "hci_uart.h" | 47 | #include "hci_uart.h" |
| 48 | 48 | ||
| 49 | #ifndef CONFIG_BT_HCIUART_DEBUG | ||
| 50 | #undef BT_DBG | ||
| 51 | #define BT_DBG( A... ) | ||
| 52 | #endif | ||
| 53 | |||
| 54 | #define VERSION "2.2" | 49 | #define VERSION "2.2" |
| 55 | 50 | ||
| 56 | static int reset = 0; | 51 | static int reset = 0; |
diff --git a/drivers/bluetooth/hci_ll.c b/drivers/bluetooth/hci_ll.c index 2d2f66e17fe..b91d45a41b2 100644 --- a/drivers/bluetooth/hci_ll.c +++ b/drivers/bluetooth/hci_ll.c | |||
| @@ -51,11 +51,6 @@ | |||
| 51 | 51 | ||
| 52 | #include "hci_uart.h" | 52 | #include "hci_uart.h" |
| 53 | 53 | ||
| 54 | #ifndef CONFIG_BT_HCIUART_DEBUG | ||
| 55 | #undef BT_DBG | ||
| 56 | #define BT_DBG( A... ) | ||
| 57 | #endif | ||
| 58 | |||
| 59 | /* HCILL commands */ | 54 | /* HCILL commands */ |
| 60 | #define HCILL_GO_TO_SLEEP_IND 0x30 | 55 | #define HCILL_GO_TO_SLEEP_IND 0x30 |
| 61 | #define HCILL_GO_TO_SLEEP_ACK 0x31 | 56 | #define HCILL_GO_TO_SLEEP_ACK 0x31 |
diff --git a/drivers/bluetooth/hci_vhci.c b/drivers/bluetooth/hci_vhci.c index 7320a71b636..0bbefba6469 100644 --- a/drivers/bluetooth/hci_vhci.c +++ b/drivers/bluetooth/hci_vhci.c | |||
| @@ -40,11 +40,6 @@ | |||
| 40 | #include <net/bluetooth/bluetooth.h> | 40 | #include <net/bluetooth/bluetooth.h> |
| 41 | #include <net/bluetooth/hci_core.h> | 41 | #include <net/bluetooth/hci_core.h> |
| 42 | 42 | ||
| 43 | #ifndef CONFIG_BT_HCIVHCI_DEBUG | ||
| 44 | #undef BT_DBG | ||
| 45 | #define BT_DBG(D...) | ||
| 46 | #endif | ||
| 47 | |||
| 48 | #define VERSION "1.2" | 43 | #define VERSION "1.2" |
| 49 | 44 | ||
| 50 | static int minor = MISC_DYNAMIC_MINOR; | 45 | static int minor = MISC_DYNAMIC_MINOR; |
diff --git a/include/net/bluetooth/bluetooth.h b/include/net/bluetooth/bluetooth.h index 996d12df759..a04f8463ac7 100644 --- a/include/net/bluetooth/bluetooth.h +++ b/include/net/bluetooth/bluetooth.h | |||
| @@ -54,8 +54,8 @@ | |||
| 54 | #define SOL_RFCOMM 18 | 54 | #define SOL_RFCOMM 18 |
| 55 | 55 | ||
| 56 | #define BT_INFO(fmt, arg...) printk(KERN_INFO "Bluetooth: " fmt "\n" , ## arg) | 56 | #define BT_INFO(fmt, arg...) printk(KERN_INFO "Bluetooth: " fmt "\n" , ## arg) |
| 57 | #define BT_DBG(fmt, arg...) printk(KERN_INFO "%s: " fmt "\n" , __func__ , ## arg) | 57 | #define BT_ERR(fmt, arg...) printk(KERN_ERR "%s: " fmt "\n" , __func__ , ## arg) |
| 58 | #define BT_ERR(fmt, arg...) printk(KERN_ERR "%s: " fmt "\n" , __func__ , ## arg) | 58 | #define BT_DBG(fmt, arg...) pr_debug("%s: " fmt "\n" , __func__ , ## arg) |
| 59 | 59 | ||
| 60 | /* Connection and socket states */ | 60 | /* Connection and socket states */ |
| 61 | enum { | 61 | enum { |
diff --git a/net/bluetooth/af_bluetooth.c b/net/bluetooth/af_bluetooth.c index f6f216e57aa..744ed3f07ef 100644 --- a/net/bluetooth/af_bluetooth.c +++ b/net/bluetooth/af_bluetooth.c | |||
| @@ -41,11 +41,6 @@ | |||
| 41 | 41 | ||
| 42 | #include <net/bluetooth/bluetooth.h> | 42 | #include <net/bluetooth/bluetooth.h> |
| 43 | 43 | ||
| 44 | #ifndef CONFIG_BT_SOCK_DEBUG | ||
| 45 | #undef BT_DBG | ||
| 46 | #define BT_DBG(D...) | ||
| 47 | #endif | ||
| 48 | |||
| 49 | #define VERSION "2.14" | 44 | #define VERSION "2.14" |
| 50 | 45 | ||
| 51 | /* Bluetooth sockets */ | 46 | /* Bluetooth sockets */ |
| @@ -245,7 +240,7 @@ int bt_sock_recvmsg(struct kiocb *iocb, struct socket *sock, | |||
| 245 | size_t copied; | 240 | size_t copied; |
| 246 | int err; | 241 | int err; |
| 247 | 242 | ||
| 248 | BT_DBG("sock %p sk %p len %d", sock, sk, len); | 243 | BT_DBG("sock %p sk %p len %zu", sock, sk, len); |
| 249 | 244 | ||
| 250 | if (flags & (MSG_OOB)) | 245 | if (flags & (MSG_OOB)) |
| 251 | return -EOPNOTSUPP; | 246 | return -EOPNOTSUPP; |
diff --git a/net/bluetooth/bnep/bnep.h b/net/bluetooth/bnep/bnep.h index b69bf4e7c48..d20f8a40f36 100644 --- a/net/bluetooth/bnep/bnep.h +++ b/net/bluetooth/bnep/bnep.h | |||
| @@ -161,7 +161,7 @@ struct bnep_session { | |||
| 161 | struct msghdr msg; | 161 | struct msghdr msg; |
| 162 | 162 | ||
| 163 | struct bnep_proto_filter proto_filter[BNEP_MAX_PROTO_FILTERS]; | 163 | struct bnep_proto_filter proto_filter[BNEP_MAX_PROTO_FILTERS]; |
| 164 | u64 mc_filter; | 164 | unsigned long long mc_filter; |
| 165 | 165 | ||
| 166 | struct socket *sock; | 166 | struct socket *sock; |
| 167 | struct net_device *dev; | 167 | struct net_device *dev; |
diff --git a/net/bluetooth/bnep/core.c b/net/bluetooth/bnep/core.c index f8efaf35293..70fea8bdb4e 100644 --- a/net/bluetooth/bnep/core.c +++ b/net/bluetooth/bnep/core.c | |||
| @@ -52,11 +52,6 @@ | |||
| 52 | 52 | ||
| 53 | #include "bnep.h" | 53 | #include "bnep.h" |
| 54 | 54 | ||
| 55 | #ifndef CONFIG_BT_BNEP_DEBUG | ||
| 56 | #undef BT_DBG | ||
| 57 | #define BT_DBG(D...) | ||
| 58 | #endif | ||
| 59 | |||
| 60 | #define VERSION "1.3" | 55 | #define VERSION "1.3" |
| 61 | 56 | ||
| 62 | static int compress_src = 1; | 57 | static int compress_src = 1; |
diff --git a/net/bluetooth/bnep/netdev.c b/net/bluetooth/bnep/netdev.c index 47e179f62e8..f897da6e044 100644 --- a/net/bluetooth/bnep/netdev.c +++ b/net/bluetooth/bnep/netdev.c | |||
| @@ -41,11 +41,6 @@ | |||
| 41 | 41 | ||
| 42 | #include "bnep.h" | 42 | #include "bnep.h" |
| 43 | 43 | ||
| 44 | #ifndef CONFIG_BT_BNEP_DEBUG | ||
| 45 | #undef BT_DBG | ||
| 46 | #define BT_DBG( A... ) | ||
| 47 | #endif | ||
| 48 | |||
| 49 | #define BNEP_TX_QUEUE_LEN 20 | 44 | #define BNEP_TX_QUEUE_LEN 20 |
| 50 | 45 | ||
| 51 | static int bnep_net_open(struct net_device *dev) | 46 | static int bnep_net_open(struct net_device *dev) |
diff --git a/net/bluetooth/bnep/sock.c b/net/bluetooth/bnep/sock.c index 8ffb57f2303..e857628b0b2 100644 --- a/net/bluetooth/bnep/sock.c +++ b/net/bluetooth/bnep/sock.c | |||
| @@ -46,11 +46,6 @@ | |||
| 46 | 46 | ||
| 47 | #include "bnep.h" | 47 | #include "bnep.h" |
| 48 | 48 | ||
| 49 | #ifndef CONFIG_BT_BNEP_DEBUG | ||
| 50 | #undef BT_DBG | ||
| 51 | #define BT_DBG( A... ) | ||
| 52 | #endif | ||
| 53 | |||
| 54 | static int bnep_sock_release(struct socket *sock) | 49 | static int bnep_sock_release(struct socket *sock) |
| 55 | { | 50 | { |
| 56 | struct sock *sk = sock->sk; | 51 | struct sock *sk = sock->sk; |
diff --git a/net/bluetooth/cmtp/capi.c b/net/bluetooth/cmtp/capi.c index 3e9d5bb3fef..78958c0f9a4 100644 --- a/net/bluetooth/cmtp/capi.c +++ b/net/bluetooth/cmtp/capi.c | |||
| @@ -42,11 +42,6 @@ | |||
| 42 | 42 | ||
| 43 | #include "cmtp.h" | 43 | #include "cmtp.h" |
| 44 | 44 | ||
| 45 | #ifndef CONFIG_BT_CMTP_DEBUG | ||
| 46 | #undef BT_DBG | ||
| 47 | #define BT_DBG(D...) | ||
| 48 | #endif | ||
| 49 | |||
| 50 | #define CAPI_INTEROPERABILITY 0x20 | 45 | #define CAPI_INTEROPERABILITY 0x20 |
| 51 | 46 | ||
| 52 | #define CAPI_INTEROPERABILITY_REQ CAPICMD(CAPI_INTEROPERABILITY, CAPI_REQ) | 47 | #define CAPI_INTEROPERABILITY_REQ CAPICMD(CAPI_INTEROPERABILITY, CAPI_REQ) |
diff --git a/net/bluetooth/cmtp/core.c b/net/bluetooth/cmtp/core.c index ca60a4517fd..c9cac7719ef 100644 --- a/net/bluetooth/cmtp/core.c +++ b/net/bluetooth/cmtp/core.c | |||
| @@ -44,11 +44,6 @@ | |||
| 44 | 44 | ||
| 45 | #include "cmtp.h" | 45 | #include "cmtp.h" |
| 46 | 46 | ||
| 47 | #ifndef CONFIG_BT_CMTP_DEBUG | ||
| 48 | #undef BT_DBG | ||
| 49 | #define BT_DBG(D...) | ||
| 50 | #endif | ||
| 51 | |||
| 52 | #define VERSION "1.0" | 47 | #define VERSION "1.0" |
| 53 | 48 | ||
| 54 | static DECLARE_RWSEM(cmtp_session_sem); | 49 | static DECLARE_RWSEM(cmtp_session_sem); |
diff --git a/net/bluetooth/cmtp/sock.c b/net/bluetooth/cmtp/sock.c index 8c7f7bc4e0b..16b0fad74f6 100644 --- a/net/bluetooth/cmtp/sock.c +++ b/net/bluetooth/cmtp/sock.c | |||
| @@ -43,11 +43,6 @@ | |||
| 43 | 43 | ||
| 44 | #include "cmtp.h" | 44 | #include "cmtp.h" |
| 45 | 45 | ||
| 46 | #ifndef CONFIG_BT_CMTP_DEBUG | ||
| 47 | #undef BT_DBG | ||
| 48 | #define BT_DBG(D...) | ||
| 49 | #endif | ||
| 50 | |||
| 51 | static int cmtp_sock_release(struct socket *sock) | 46 | static int cmtp_sock_release(struct socket *sock) |
| 52 | { | 47 | { |
| 53 | struct sock *sk = sock->sk; | 48 | struct sock *sk = sock->sk; |
diff --git a/net/bluetooth/hci_conn.c b/net/bluetooth/hci_conn.c index b7002429f15..a4a789f24c8 100644 --- a/net/bluetooth/hci_conn.c +++ b/net/bluetooth/hci_conn.c | |||
| @@ -45,11 +45,6 @@ | |||
| 45 | #include <net/bluetooth/bluetooth.h> | 45 | #include <net/bluetooth/bluetooth.h> |
| 46 | #include <net/bluetooth/hci_core.h> | 46 | #include <net/bluetooth/hci_core.h> |
| 47 | 47 | ||
| 48 | #ifndef CONFIG_BT_HCI_CORE_DEBUG | ||
| 49 | #undef BT_DBG | ||
| 50 | #define BT_DBG(D...) | ||
| 51 | #endif | ||
| 52 | |||
| 53 | void hci_acl_connect(struct hci_conn *conn) | 48 | void hci_acl_connect(struct hci_conn *conn) |
| 54 | { | 49 | { |
| 55 | struct hci_dev *hdev = conn->hdev; | 50 | struct hci_dev *hdev = conn->hdev; |
diff --git a/net/bluetooth/hci_core.c b/net/bluetooth/hci_core.c index fa7c5370b55..ba78cc1eb8d 100644 --- a/net/bluetooth/hci_core.c +++ b/net/bluetooth/hci_core.c | |||
| @@ -48,11 +48,6 @@ | |||
| 48 | #include <net/bluetooth/bluetooth.h> | 48 | #include <net/bluetooth/bluetooth.h> |
| 49 | #include <net/bluetooth/hci_core.h> | 49 | #include <net/bluetooth/hci_core.h> |
| 50 | 50 | ||
| 51 | #ifndef CONFIG_BT_HCI_CORE_DEBUG | ||
| 52 | #undef BT_DBG | ||
| 53 | #define BT_DBG(D...) | ||
| 54 | #endif | ||
| 55 | |||
| 56 | static void hci_cmd_task(unsigned long arg); | 51 | static void hci_cmd_task(unsigned long arg); |
| 57 | static void hci_rx_task(unsigned long arg); | 52 | static void hci_rx_task(unsigned long arg); |
| 58 | static void hci_tx_task(unsigned long arg); | 53 | static void hci_tx_task(unsigned long arg); |
| @@ -290,7 +285,7 @@ static void hci_linkpol_req(struct hci_dev *hdev, unsigned long opt) | |||
| 290 | { | 285 | { |
| 291 | __le16 policy = cpu_to_le16(opt); | 286 | __le16 policy = cpu_to_le16(opt); |
| 292 | 287 | ||
| 293 | BT_DBG("%s %x", hdev->name, opt); | 288 | BT_DBG("%s %x", hdev->name, policy); |
| 294 | 289 | ||
| 295 | /* Default link policy */ | 290 | /* Default link policy */ |
| 296 | hci_send_cmd(hdev, HCI_OP_WRITE_DEF_LINK_POLICY, 2, &policy); | 291 | hci_send_cmd(hdev, HCI_OP_WRITE_DEF_LINK_POLICY, 2, &policy); |
diff --git a/net/bluetooth/hci_event.c b/net/bluetooth/hci_event.c index ad7a553d771..f91ba690f5d 100644 --- a/net/bluetooth/hci_event.c +++ b/net/bluetooth/hci_event.c | |||
| @@ -45,11 +45,6 @@ | |||
| 45 | #include <net/bluetooth/bluetooth.h> | 45 | #include <net/bluetooth/bluetooth.h> |
| 46 | #include <net/bluetooth/hci_core.h> | 46 | #include <net/bluetooth/hci_core.h> |
| 47 | 47 | ||
| 48 | #ifndef CONFIG_BT_HCI_CORE_DEBUG | ||
| 49 | #undef BT_DBG | ||
| 50 | #define BT_DBG(D...) | ||
| 51 | #endif | ||
| 52 | |||
| 53 | /* Handle HCI Event packets */ | 48 | /* Handle HCI Event packets */ |
| 54 | 49 | ||
| 55 | static void hci_cc_inquiry_cancel(struct hci_dev *hdev, struct sk_buff *skb) | 50 | static void hci_cc_inquiry_cancel(struct hci_dev *hdev, struct sk_buff *skb) |
diff --git a/net/bluetooth/hci_sock.c b/net/bluetooth/hci_sock.c index d62579b6795..4f9621f759a 100644 --- a/net/bluetooth/hci_sock.c +++ b/net/bluetooth/hci_sock.c | |||
| @@ -49,11 +49,6 @@ | |||
| 49 | #include <net/bluetooth/bluetooth.h> | 49 | #include <net/bluetooth/bluetooth.h> |
| 50 | #include <net/bluetooth/hci_core.h> | 50 | #include <net/bluetooth/hci_core.h> |
| 51 | 51 | ||
| 52 | #ifndef CONFIG_BT_HCI_SOCK_DEBUG | ||
| 53 | #undef BT_DBG | ||
| 54 | #define BT_DBG(D...) | ||
| 55 | #endif | ||
| 56 | |||
| 57 | /* ----- HCI socket interface ----- */ | 52 | /* ----- HCI socket interface ----- */ |
| 58 | 53 | ||
| 59 | static inline int hci_test_bit(int nr, void *addr) | 54 | static inline int hci_test_bit(int nr, void *addr) |
diff --git a/net/bluetooth/hci_sysfs.c b/net/bluetooth/hci_sysfs.c index f2bbb2f6543..6490bf8402f 100644 --- a/net/bluetooth/hci_sysfs.c +++ b/net/bluetooth/hci_sysfs.c | |||
| @@ -6,11 +6,6 @@ | |||
| 6 | #include <net/bluetooth/bluetooth.h> | 6 | #include <net/bluetooth/bluetooth.h> |
| 7 | #include <net/bluetooth/hci_core.h> | 7 | #include <net/bluetooth/hci_core.h> |
| 8 | 8 | ||
| 9 | #ifndef CONFIG_BT_HCI_CORE_DEBUG | ||
| 10 | #undef BT_DBG | ||
| 11 | #define BT_DBG(D...) | ||
| 12 | #endif | ||
| 13 | |||
| 14 | struct class *bt_class = NULL; | 9 | struct class *bt_class = NULL; |
| 15 | EXPORT_SYMBOL_GPL(bt_class); | 10 | EXPORT_SYMBOL_GPL(bt_class); |
| 16 | 11 | ||
diff --git a/net/bluetooth/hidp/core.c b/net/bluetooth/hidp/core.c index acdeab3d980..b18676870d5 100644 --- a/net/bluetooth/hidp/core.c +++ b/net/bluetooth/hidp/core.c | |||
| @@ -47,11 +47,6 @@ | |||
| 47 | 47 | ||
| 48 | #include "hidp.h" | 48 | #include "hidp.h" |
| 49 | 49 | ||
| 50 | #ifndef CONFIG_BT_HIDP_DEBUG | ||
| 51 | #undef BT_DBG | ||
| 52 | #define BT_DBG(D...) | ||
| 53 | #endif | ||
| 54 | |||
| 55 | #define VERSION "1.2" | 50 | #define VERSION "1.2" |
| 56 | 51 | ||
| 57 | static DECLARE_RWSEM(hidp_session_sem); | 52 | static DECLARE_RWSEM(hidp_session_sem); |
diff --git a/net/bluetooth/hidp/sock.c b/net/bluetooth/hidp/sock.c index f4dd02ca9a9..37c9d7d2e68 100644 --- a/net/bluetooth/hidp/sock.c +++ b/net/bluetooth/hidp/sock.c | |||
| @@ -39,11 +39,6 @@ | |||
| 39 | 39 | ||
| 40 | #include "hidp.h" | 40 | #include "hidp.h" |
| 41 | 41 | ||
| 42 | #ifndef CONFIG_BT_HIDP_DEBUG | ||
| 43 | #undef BT_DBG | ||
| 44 | #define BT_DBG(D...) | ||
| 45 | #endif | ||
| 46 | |||
| 47 | static int hidp_sock_release(struct socket *sock) | 42 | static int hidp_sock_release(struct socket *sock) |
| 48 | { | 43 | { |
| 49 | struct sock *sk = sock->sk; | 44 | struct sock *sk = sock->sk; |
diff --git a/net/bluetooth/l2cap.c b/net/bluetooth/l2cap.c index 9610a9c85b9..b93748e224f 100644 --- a/net/bluetooth/l2cap.c +++ b/net/bluetooth/l2cap.c | |||
| @@ -50,11 +50,6 @@ | |||
| 50 | #include <net/bluetooth/hci_core.h> | 50 | #include <net/bluetooth/hci_core.h> |
| 51 | #include <net/bluetooth/l2cap.h> | 51 | #include <net/bluetooth/l2cap.h> |
| 52 | 52 | ||
| 53 | #ifndef CONFIG_BT_L2CAP_DEBUG | ||
| 54 | #undef BT_DBG | ||
| 55 | #define BT_DBG(D...) | ||
| 56 | #endif | ||
| 57 | |||
| 58 | #define VERSION "2.11" | 53 | #define VERSION "2.11" |
| 59 | 54 | ||
| 60 | static u32 l2cap_feat_mask = 0x0000; | 55 | static u32 l2cap_feat_mask = 0x0000; |
diff --git a/net/bluetooth/rfcomm/core.c b/net/bluetooth/rfcomm/core.c index ba537fae0a4..37c640d1c3f 100644 --- a/net/bluetooth/rfcomm/core.c +++ b/net/bluetooth/rfcomm/core.c | |||
| @@ -46,11 +46,6 @@ | |||
| 46 | #include <net/bluetooth/l2cap.h> | 46 | #include <net/bluetooth/l2cap.h> |
| 47 | #include <net/bluetooth/rfcomm.h> | 47 | #include <net/bluetooth/rfcomm.h> |
| 48 | 48 | ||
| 49 | #ifndef CONFIG_BT_RFCOMM_DEBUG | ||
| 50 | #undef BT_DBG | ||
| 51 | #define BT_DBG(D...) | ||
| 52 | #endif | ||
| 53 | |||
| 54 | #define VERSION "1.10" | 49 | #define VERSION "1.10" |
| 55 | 50 | ||
| 56 | static int disable_cfc = 0; | 51 | static int disable_cfc = 0; |
diff --git a/net/bluetooth/rfcomm/sock.c b/net/bluetooth/rfcomm/sock.c index bc0d4a7ce6a..ad00cbf449c 100644 --- a/net/bluetooth/rfcomm/sock.c +++ b/net/bluetooth/rfcomm/sock.c | |||
| @@ -50,11 +50,6 @@ | |||
| 50 | #include <net/bluetooth/l2cap.h> | 50 | #include <net/bluetooth/l2cap.h> |
| 51 | #include <net/bluetooth/rfcomm.h> | 51 | #include <net/bluetooth/rfcomm.h> |
| 52 | 52 | ||
| 53 | #ifndef CONFIG_BT_RFCOMM_DEBUG | ||
| 54 | #undef BT_DBG | ||
| 55 | #define BT_DBG(D...) | ||
| 56 | #endif | ||
| 57 | |||
| 58 | static const struct proto_ops rfcomm_sock_ops; | 53 | static const struct proto_ops rfcomm_sock_ops; |
| 59 | 54 | ||
| 60 | static struct bt_sock_list rfcomm_sk_list = { | 55 | static struct bt_sock_list rfcomm_sk_list = { |
| @@ -644,7 +639,7 @@ static int rfcomm_sock_recvmsg(struct kiocb *iocb, struct socket *sock, | |||
| 644 | 639 | ||
| 645 | msg->msg_namelen = 0; | 640 | msg->msg_namelen = 0; |
| 646 | 641 | ||
| 647 | BT_DBG("sk %p size %d", sk, size); | 642 | BT_DBG("sk %p size %zu", sk, size); |
| 648 | 643 | ||
| 649 | lock_sock(sk); | 644 | lock_sock(sk); |
| 650 | 645 | ||
diff --git a/net/bluetooth/rfcomm/tty.c b/net/bluetooth/rfcomm/tty.c index d3340dd52bc..1e4100bb0b6 100644 --- a/net/bluetooth/rfcomm/tty.c +++ b/net/bluetooth/rfcomm/tty.c | |||
| @@ -39,11 +39,6 @@ | |||
| 39 | #include <net/bluetooth/hci_core.h> | 39 | #include <net/bluetooth/hci_core.h> |
| 40 | #include <net/bluetooth/rfcomm.h> | 40 | #include <net/bluetooth/rfcomm.h> |
| 41 | 41 | ||
| 42 | #ifndef CONFIG_BT_RFCOMM_DEBUG | ||
| 43 | #undef BT_DBG | ||
| 44 | #define BT_DBG(D...) | ||
| 45 | #endif | ||
| 46 | |||
| 47 | #define RFCOMM_TTY_MAGIC 0x6d02 /* magic number for rfcomm struct */ | 42 | #define RFCOMM_TTY_MAGIC 0x6d02 /* magic number for rfcomm struct */ |
| 48 | #define RFCOMM_TTY_PORTS RFCOMM_MAX_DEV /* whole lotta rfcomm devices */ | 43 | #define RFCOMM_TTY_PORTS RFCOMM_MAX_DEV /* whole lotta rfcomm devices */ |
| 49 | #define RFCOMM_TTY_MAJOR 216 /* device node major id of the usb/bluetooth.c driver */ | 44 | #define RFCOMM_TTY_MAJOR 216 /* device node major id of the usb/bluetooth.c driver */ |
diff --git a/net/bluetooth/sco.c b/net/bluetooth/sco.c index 0cc91e6da76..46fd8bf9a69 100644 --- a/net/bluetooth/sco.c +++ b/net/bluetooth/sco.c | |||
| @@ -48,11 +48,6 @@ | |||
| 48 | #include <net/bluetooth/hci_core.h> | 48 | #include <net/bluetooth/hci_core.h> |
| 49 | #include <net/bluetooth/sco.h> | 49 | #include <net/bluetooth/sco.h> |
| 50 | 50 | ||
| 51 | #ifndef CONFIG_BT_SCO_DEBUG | ||
| 52 | #undef BT_DBG | ||
| 53 | #define BT_DBG(D...) | ||
| 54 | #endif | ||
| 55 | |||
| 56 | #define VERSION "0.6" | 51 | #define VERSION "0.6" |
| 57 | 52 | ||
| 58 | static int disable_esco = 0; | 53 | static int disable_esco = 0; |
