summaryrefslogtreecommitdiffstats
path: root/kernel/printk
diff options
context:
space:
mode:
authorTony Lindgren <tony@atomide.com>2023-10-12 09:42:57 +0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2023-10-17 10:18:59 +0200
commit1e3c8526918403a4cebbd67bcd18443bf68df939 (patch)
tree1061f037986b05c60f472ae5a21c6186a3c1a6f6 /kernel/printk
parent545a4f89cad5bd349522d17558b3a4208648e20e (diff)
downloadlinux-1e3c8526918403a4cebbd67bcd18443bf68df939.tar.gz
linux-1e3c8526918403a4cebbd67bcd18443bf68df939.tar.bz2
linux-1e3c8526918403a4cebbd67bcd18443bf68df939.zip
printk: Constify name for add_preferred_console()
While adding a preferred console handling for serial_core for serial port hardware based device addressing, Jiri suggested we constify name for add_preferred_console(). The name gets copied anyways. This allows serial core to add a preferred console using serial drv->dev_name without copying it. Note that constifying options causes changes all over the place because of struct console for match(). Suggested-by: Jiri Slaby <jirislaby@kernel.org> Reviewed-by: Petr Mladek <pmladek@suse.com> Signed-off-by: Tony Lindgren <tony@atomide.com> Link: https://lore.kernel.org/r/20231012064300.50221-2-tony@atomide.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'kernel/printk')
-rw-r--r--kernel/printk/printk.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/printk/printk.c b/kernel/printk/printk.c
index b16c0bab88c6..122cb6e83f42 100644
--- a/kernel/printk/printk.c
+++ b/kernel/printk/printk.c
@@ -2404,7 +2404,7 @@ static void set_user_specified(struct console_cmdline *c, bool user_specified)
console_set_on_cmdline = 1;
}
-static int __add_preferred_console(char *name, const short idx, char *options,
+static int __add_preferred_console(const char *name, const short idx, char *options,
char *brl_options, bool user_specified)
{
struct console_cmdline *c;
@@ -2521,7 +2521,7 @@ __setup("console=", console_setup);
* commonly to provide a default console (ie from PROM variables) when
* the user has not supplied one.
*/
-int add_preferred_console(char *name, const short idx, char *options)
+int add_preferred_console(const char *name, const short idx, char *options)
{
return __add_preferred_console(name, idx, options, NULL, false);
}