bluetooth: Define proper kernel messages

Revert Samsung changes that made all bluetooth kernel messages into
error messages.
This commit is contained in:
syphyr 2019-03-31 21:21:09 +02:00
parent ba8ed9f494
commit add5b29589
1 changed files with 2 additions and 2 deletions

View File

@ -28,8 +28,8 @@
#include <linux/regulator/consumer.h>
#include <net/cnss.h>
#define BT_PWR_DBG(fmt, arg...) pr_err("[BT] %s: " fmt "\n" , __func__ , ## arg)
#define BT_PWR_INFO(fmt, arg...) pr_err("[BT] %s: " fmt "\n" , __func__ , ## arg)
#define BT_PWR_DBG(fmt, arg...) pr_debug("[BT] %s: " fmt "\n" , __func__ , ## arg)
#define BT_PWR_INFO(fmt, arg...) pr_info("[BT] %s: " fmt "\n" , __func__ , ## arg)
#define BT_PWR_ERR(fmt, arg...) pr_err("[BT] %s: " fmt "\n" , __func__ , ## arg)