diff options
author | kbuild test robot <lkp@intel.com> | 2019-11-23 16:30:23 +0100 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2019-12-10 10:12:55 +0100 |
commit | da9144c5ad8943f9003ec4a6a0200637b4ba9ebd (patch) | |
tree | f1d779839bc6d9d8070b7f8003be4c81610a0cb3 /arch | |
parent | x86/mm: Tabulate the page table encoding definitions (diff) | |
download | linux-da9144c5ad8943f9003ec4a6a0200637b4ba9ebd.tar.xz linux-da9144c5ad8943f9003ec4a6a0200637b4ba9ebd.zip |
x86/mm/pat: Mark __cpa_flush_tlb() as static
Signed-off-by: kbuild test robot <lkp@intel.com>
Link: https://lkml.kernel.org/r/20191123153023.bj6m66scjeubhbjg@4978f4969bb8
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/mm/pat/set_memory.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/mm/pat/set_memory.c b/arch/x86/mm/pat/set_memory.c index d4ab493b1647..20823392f4f2 100644 --- a/arch/x86/mm/pat/set_memory.c +++ b/arch/x86/mm/pat/set_memory.c @@ -331,7 +331,7 @@ static void cpa_flush_all(unsigned long cache) on_each_cpu(__cpa_flush_all, (void *) cache, 1); } -void __cpa_flush_tlb(void *data) +static void __cpa_flush_tlb(void *data) { struct cpa_data *cpa = data; unsigned int i; |