Lines Matching refs:fmt
123 void bt_info(const char *fmt, ...);
125 void bt_warn(const char *fmt, ...);
127 void bt_err(const char *fmt, ...);
129 void bt_err_ratelimited(const char *fmt, ...);
131 #define BT_INFO(fmt, ...) bt_info(fmt "\n", ##__VA_ARGS__) argument
132 #define BT_WARN(fmt, ...) bt_warn(fmt "\n", ##__VA_ARGS__) argument
133 #define BT_ERR(fmt, ...) bt_err(fmt "\n", ##__VA_ARGS__) argument
134 #define BT_DBG(fmt, ...) pr_debug(fmt "\n", ##__VA_ARGS__) argument
136 #define BT_ERR_RATELIMITED(fmt, ...) bt_err_ratelimited(fmt "\n", ##__VA_ARGS__) argument
138 #define bt_dev_info(hdev, fmt, ...) \ argument
139 BT_INFO("%s: " fmt, (hdev)->name, ##__VA_ARGS__)
140 #define bt_dev_warn(hdev, fmt, ...) \ argument
141 BT_WARN("%s: " fmt, (hdev)->name, ##__VA_ARGS__)
142 #define bt_dev_err(hdev, fmt, ...) \ argument
143 BT_ERR("%s: " fmt, (hdev)->name, ##__VA_ARGS__)
144 #define bt_dev_dbg(hdev, fmt, ...) \ argument
145 BT_DBG("%s: " fmt, (hdev)->name, ##__VA_ARGS__)