[PATCH] perf/x86/intel/bts: make bts_pmu static

From: Colin King
Date: Thu Aug 10 2017 - 11:57:57 EST


From: Colin Ian King <colin.king@xxxxxxxxxxxxx>

The structure bts_pmu is local to the source and do not need to be in
global scope, so make it static.

Cleans up sparse warning:
warning: symbol 'bts_pmu' was not declared. Should it be static?

Signed-off-by: Colin Ian King <colin.king@xxxxxxxxxxxxx>
---
arch/x86/events/intel/bts.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/x86/events/intel/bts.c b/arch/x86/events/intel/bts.c
index 8ae8c5ce3a1f..ddd8d3516bfc 100644
--- a/arch/x86/events/intel/bts.c
+++ b/arch/x86/events/intel/bts.c
@@ -69,7 +69,7 @@ struct bts_buffer {
struct bts_phys buf[0];
};

-struct pmu bts_pmu;
+static struct pmu bts_pmu;

static size_t buf_size(struct page *page)
{
--
2.11.0