From add5b2958969d63be2d7841ea0d05ffeef219205 Mon Sep 17 00:00:00 2001 From: syphyr Date: Sun, 31 Mar 2019 21:21:09 +0200 Subject: [PATCH] bluetooth: Define proper kernel messages Revert Samsung changes that made all bluetooth kernel messages into error messages. --- drivers/bluetooth/bluetooth-power.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/bluetooth/bluetooth-power.c b/drivers/bluetooth/bluetooth-power.c index 60a7f7db8e44..877b8d5fe024 100644 --- a/drivers/bluetooth/bluetooth-power.c +++ b/drivers/bluetooth/bluetooth-power.c @@ -28,8 +28,8 @@ #include #include -#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)