From: John Johansen Date: Mon, 17 Feb 2025 09:50:36 +0000 (-0800) Subject: apparmor: make debug_values_table static X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4c0dc425fd613c5de0ca445f29d63150b52efc35;p=thirdparty%2Fkernel%2Flinux.git apparmor: make debug_values_table static The debug_values_table is only referenced from lib.c so it should be static. Signed-off-by: John Johansen --- diff --git a/security/apparmor/lib.c b/security/apparmor/lib.c index 325f26f39a63c..7cdf430762a8f 100644 --- a/security/apparmor/lib.c +++ b/security/apparmor/lib.c @@ -30,7 +30,7 @@ struct val_table_ent { int value; }; -struct val_table_ent debug_values_table[] = { +static struct val_table_ent debug_values_table[] = { { "N", DEBUG_NONE }, { "none", DEBUG_NONE }, { "n", DEBUG_NONE },