tty: rpmsg: Define tty name via constant string literal
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Mon, 25 Oct 2021 13:51:48 +0000 (16:51 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 26 Oct 2021 17:19:42 +0000 (19:19 +0200)
Driver uses already twice the same string literal.

Define it in one place, so every user will have this
name consistent.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20211025135148.53944-5-andriy.shevchenko@linux.intel.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/tty/rpmsg_tty.c

index 4bee6c5..dae2a4e 100644 (file)
@@ -18,6 +18,7 @@
 #include <linux/tty.h>
 #include <linux/tty_flip.h>
 
+#define RPMSG_TTY_NAME "ttyRPMSG"
 #define MAX_TTY_RPMSG  32
 
 static DEFINE_IDR(tty_idr);    /* tty instance id */
@@ -172,7 +173,7 @@ static int rpmsg_tty_probe(struct rpmsg_device *rpdev)
 
        dev_set_drvdata(dev, cport);
 
-       dev_dbg(dev, "New channel: 0x%x -> 0x%x : ttyRPMSG%d\n",
+       dev_dbg(dev, "New channel: 0x%x -> 0x%x: " RPMSG_TTY_NAME "%d\n",
                rpdev->src, rpdev->dst, cport->id);
 
        return 0;
@@ -224,7 +225,7 @@ static int __init rpmsg_tty_init(void)
                return PTR_ERR(rpmsg_tty_driver);
 
        rpmsg_tty_driver->driver_name = "rpmsg_tty";
-       rpmsg_tty_driver->name = "ttyRPMSG";
+       rpmsg_tty_driver->name = RPMSG_TTY_NAME;
        rpmsg_tty_driver->major = 0;
        rpmsg_tty_driver->type = TTY_DRIVER_TYPE_CONSOLE;