[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <DB3PR10MB6835DE6D279B65EC040B92AEE8AAA@DB3PR10MB6835.EURPRD10.PROD.OUTLOOK.COM>
Date: Tue, 7 Nov 2023 03:56:08 +0530
From: Yuran Pereira <yuran.pereira@...mail.com>
To: linux-bluetooth@...r.kernel.org
Cc: Yuran Pereira <yuran.pereira@...mail.com>, marcel@...tmann.org,
johan.hedberg@...il.com, luiz.dentz@...il.com,
linux-kernel@...r.kernel.org,
linux-kernel-mentees@...ts.linuxfoundation.org
Subject: [PATCH 2/2] Bluetooth: Replaces printk with pr_debug in bt_dbg
bt_dbg() uses printk, as opposed to other functions in this file
which use pr_* family of logging functions.
This patch changes that by replacing `printk(KERN_DEBUG` with
the equivalent pr_debug() call which makes the overall file
look more uniform and cleaner.
Signed-off-by: Yuran Pereira <yuran.pereira@...mail.com>
---
net/bluetooth/lib.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net/bluetooth/lib.c b/net/bluetooth/lib.c
index 063032fe9c68..96ba39f8b461 100644
--- a/net/bluetooth/lib.c
+++ b/net/bluetooth/lib.c
@@ -329,7 +329,7 @@ void bt_dbg(const char *format, ...)
vaf.fmt = format;
vaf.va = &args;
- printk(KERN_DEBUG pr_fmt("%pV"), &vaf);
+ pr_debug("%pV", &vaf);
va_end(args);
}
--
2.25.1
Powered by blists - more mailing lists