diff options
author | Helge Deller <deller@gmx.de> | 2023-08-10 23:00:18 +0200 |
---|---|---|
committer | Helge Deller <deller@gmx.de> | 2023-08-10 23:00:18 +0200 |
commit | d863066e6ce0a70c479a7f618088912ac0ba44ac (patch) | |
tree | 0ff20a3a3510f6ff5b7f2d49b915ac4a4bc4238c /arch | |
parent | 2794f8ecb483b680610968423179005758a5ce63 (diff) | |
download | linux-stable-d863066e6ce0a70c479a7f618088912ac0ba44ac.tar.gz linux-stable-d863066e6ce0a70c479a7f618088912ac0ba44ac.tar.bz2 linux-stable-d863066e6ce0a70c479a7f618088912ac0ba44ac.zip |
parisc: perf: Make cpu_device variable static
Signed-off-by: Helge Deller <deller@gmx.de>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/parisc/kernel/perf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/parisc/kernel/perf.c b/arch/parisc/kernel/perf.c index 90b04d8af212..b0f0816879df 100644 --- a/arch/parisc/kernel/perf.c +++ b/arch/parisc/kernel/perf.c @@ -57,7 +57,7 @@ struct rdr_tbl_ent { static int perf_processor_interface __read_mostly = UNKNOWN_INTF; static int perf_enabled __read_mostly; static DEFINE_SPINLOCK(perf_lock); -struct parisc_device *cpu_device __read_mostly; +static struct parisc_device *cpu_device __read_mostly; /* RDRs to write for PCX-W */ static const int perf_rdrs_W[] = |