diff options
author | Alexander Aring <alex.aring@gmail.com> | 2013-12-12 20:15:25 +0100 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2013-12-12 12:14:54 -0800 |
commit | 841a5ec72c028432f716670c4a7c2e1b70ee1341 (patch) | |
tree | 7f5c061987928ff287c1c55b3ffe596c4c670f98 /net/bluetooth | |
parent | 30d3db44bb337321b25344eea3ed6a64ee16fcc8 (diff) | |
download | op-kernel-dev-841a5ec72c028432f716670c4a7c2e1b70ee1341.zip op-kernel-dev-841a5ec72c028432f716670c4a7c2e1b70ee1341.tar.gz |
6lowpan: fix/move/cleanup debug functions
There are several issues on current debug behaviour.
This patch fix the following issues:
- Fix debug printout only if DEBUG is defined.
- Move debug functions of 6LoWPAN code into 6lowpan header.
- Cleanup codestyle of debug functions.
Signed-off-by: Alexander Aring <alex.aring@gmail.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'net/bluetooth')
-rw-r--r-- | net/bluetooth/6lowpan.c | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/net/bluetooth/6lowpan.c b/net/bluetooth/6lowpan.c index 5ad8b48..37239db 100644 --- a/net/bluetooth/6lowpan.c +++ b/net/bluetooth/6lowpan.c @@ -167,33 +167,6 @@ static struct lowpan_dev *lookup_dev(struct l2cap_conn *conn) return dev; } -/* print data in line */ -static inline void raw_dump_inline(const char *caller, char *msg, - unsigned char *buf, int len) -{ - if (msg) - pr_debug("%s():%s: ", caller, msg); - - print_hex_dump_debug("", DUMP_PREFIX_NONE, - 16, 1, buf, len, false); -} - -/* print data in a table format: - * - * addr: xx xx xx xx xx xx - * addr: xx xx xx xx xx xx - * ... - */ -static inline void raw_dump_table(const char *caller, char *msg, - unsigned char *buf, int len) -{ - if (msg) - pr_debug("%s():%s:\n", caller, msg); - - print_hex_dump_debug("\t", DUMP_PREFIX_OFFSET, - 16, 1, buf, len, false); -} - static int give_skb_to_upper(struct sk_buff *skb, struct net_device *dev) { struct sk_buff *skb_cp; |