[PATCH 20/45] C++: init/main: Constify pointers
From: David Howells
Date: Sun Apr 01 2018 - 16:42:24 EST
ramdisk_execute_command and initcall_level_names should be const char *
pointers.
Signed-off-by: David Howells <dhowells@xxxxxxxxxx>
---
init/main.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/init/main.c b/init/main.c
index 969eaf140ef0..642e917387db 100644
--- a/init/main.c
+++ b/init/main.c
@@ -135,7 +135,7 @@ static char *static_command_line;
static char *initcall_command_line;
static char *execute_command;
-static char *ramdisk_execute_command;
+static const char *ramdisk_execute_command;
/*
* Used to generate warnings if static_key manipulation functions are used
@@ -873,7 +873,7 @@ static initcall_t *initcall_levels[] __initdata = {
};
/* Keep these in sync with initcalls in include/linux/init.h */
-static char *initcall_level_names[] __initdata = {
+static const char *initcall_level_names[] __initconst = {
"early",
"core",
"postcore",