summaryrefslogtreecommitdiffstats
path: root/drivers/tty/rpmsg_tty.c
diff options
context:
space:
mode:
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>2021-10-25 16:51:47 +0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2021-10-26 19:19:41 +0200
commit88af70be4a5b936aa440bb9e22e6c57304067db6 (patch)
tree84f6274aac6061632efa35d2302db83be48e8729 /drivers/tty/rpmsg_tty.c
parent8673ef7bd96dd75ed308cb71d48a292eaa1b72fa (diff)
downloadlinux-88af70be4a5b936aa440bb9e22e6c57304067db6.tar.bz2
tty: rpmsg: Add pr_fmt() to prefix messages
Make all messages to be prefixed in a unified way. Add pr_fmt() to achieve this. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Link: https://lore.kernel.org/r/20211025135148.53944-4-andriy.shevchenko@linux.intel.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty/rpmsg_tty.c')
-rw-r--r--drivers/tty/rpmsg_tty.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/tty/rpmsg_tty.c b/drivers/tty/rpmsg_tty.c
index d172dd331bc9..4bee6c5bbb53 100644
--- a/drivers/tty/rpmsg_tty.c
+++ b/drivers/tty/rpmsg_tty.c
@@ -10,6 +10,8 @@
* The "rpmsg-tty" service is directly used for data exchange. No flow control is implemented yet.
*/
+#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
+
#include <linux/module.h>
#include <linux/rpmsg.h>
#include <linux/slab.h>
@@ -235,13 +237,13 @@ static int __init rpmsg_tty_init(void)
ret = tty_register_driver(rpmsg_tty_driver);
if (ret < 0) {
- pr_err("Couldn't install rpmsg tty driver: %d\n", ret);
+ pr_err("Couldn't install driver: %d\n", ret);
goto error_put;
}
ret = register_rpmsg_driver(&rpmsg_tty_rpmsg_drv);
if (ret < 0) {
- pr_err("Couldn't register rpmsg tty driver: %d\n", ret);
+ pr_err("Couldn't register driver: %d\n", ret);
goto error_unregister;
}