aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/bluetooth/bluetooth.h
diff options
context:
space:
mode:
authorLoic Poulain <loic.poulain@intel.com>2015-08-30 18:16:55 +0200
committerMarcel Holtmann <marcel@holtmann.org>2015-09-17 13:20:00 +0200
commit6f558b70fb39fc8272fc513ecf191b3ad87d867b (patch)
treef66e8a5559279cf6c836311bbd075e5c8773630c /include/net/bluetooth/bluetooth.h
parentBluetooth: btusb: Detect new kind of counterfeit CSR controllers (diff)
downloadlinux-dev-6f558b70fb39fc8272fc513ecf191b3ad87d867b.tar.xz
linux-dev-6f558b70fb39fc8272fc513ecf191b3ad87d867b.zip
Bluetooth: Add bt_dev logging macros
Add specific bluetooth device logging macros since hci device name is repeatedly referred in bluetooth subsystem logs. Signed-off-by: Loic Poulain <loic.poulain@intel.com> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'include/net/bluetooth/bluetooth.h')
-rw-r--r--include/net/bluetooth/bluetooth.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/net/bluetooth/bluetooth.h b/include/net/bluetooth/bluetooth.h
index 38d8a34d3589..fcf2ae7dbfa0 100644
--- a/include/net/bluetooth/bluetooth.h
+++ b/include/net/bluetooth/bluetooth.h
@@ -128,6 +128,13 @@ void bt_err(const char *fmt, ...);
#define BT_ERR(fmt, ...) bt_err(fmt "\n", ##__VA_ARGS__)
#define BT_DBG(fmt, ...) pr_debug(fmt "\n", ##__VA_ARGS__)
+#define bt_dev_info(hdev, fmt, ...) \
+ BT_INFO("%s: " fmt, (hdev)->name, ##__VA_ARGS__)
+#define bt_dev_err(hdev, fmt, ...) \
+ BT_ERR("%s: " fmt, (hdev)->name, ##__VA_ARGS__)
+#define bt_dev_dbg(hdev, fmt, ...) \
+ BT_DBG("%s: " fmt, (hdev)->name, ##__VA_ARGS__)
+
/* Connection and socket states */
enum {
BT_CONNECTED = 1, /* Equal to TCP_ESTABLISHED to make net code happy */