1
0
Fork 0

KVM: x86: MMU: make array audit_point_name static

The array audit_point_name is local to the source and does not need to
be in global scope, so make it static.

Cleans up sparse warning:
arch/x86/kvm/mmu_audit.c:22:12: warning: symbol 'audit_point_name' was
not declared. Should it be static?

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
hifive-unleashed-5.1
Colin Ian King 2017-11-30 12:04:22 +00:00 committed by Paolo Bonzini
parent 858ac87fc2
commit 0d37d26f11
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@
#include <linux/ratelimit.h>
char const *audit_point_name[] = {
static char const *audit_point_name[] = {
"pre page fault",
"post page fault",
"pre pte write",