diff options
| author | Jason Yan <[email protected]> | 2020-09-15 15:03:24 +0800 |
|---|---|---|
| committer | Steven Rostedt (VMware) <[email protected]> | 2020-09-18 22:17:05 -0400 |
| commit | a27026e95b57acbb8df7182e020b099e7f3b5ac3 (patch) | |
| tree | 06d9a51e5f76a12cdbf1b77b8a1014b9fcd33723 | |
| parent | 82d083ab60c3693201c6f5c7a5f23a6ed422098d (diff) | |
bootconfig: init: make xbc_namebuf static
This eliminates the following sparse warning:
init/main.c:306:6: warning: symbol 'xbc_namebuf' was not declared.
Should it be static?
Link: https://lkml.kernel.org/r/[email protected]
Reported-by: Hulk Robot <[email protected]>
Acked-by: Masami Hiramatsu <[email protected]>
Signed-off-by: Jason Yan <[email protected]>
Signed-off-by: Steven Rostedt (VMware) <[email protected]>
| -rw-r--r-- | init/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/init/main.c b/init/main.c index 038128b2a755..e880b4ecb314 100644 --- a/init/main.c +++ b/init/main.c @@ -304,7 +304,7 @@ static void * __init get_boot_config_from_initrd(u32 *_size, u32 *_csum) #ifdef CONFIG_BOOT_CONFIG -char xbc_namebuf[XBC_KEYLEN_MAX] __initdata; +static char xbc_namebuf[XBC_KEYLEN_MAX] __initdata; #define rest(dst, end) ((end) > (dst) ? (end) - (dst) : 0) |