diff options
author | Aneesh Kumar K.V <aneesh.kumar@linux.ibm.com> | 2019-12-02 12:10:18 +0530 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2019-12-05 09:17:42 +1100 |
commit | 551003fff7235ce935bc1fefb72d12b63a408bd0 (patch) | |
tree | 187c3398490e4e38fcf92a2fe6e021e543020bba /arch | |
parent | b6afd1234cf93aa0d71b4be4788c47534905f0be (diff) | |
download | linux-551003fff7235ce935bc1fefb72d12b63a408bd0.tar.gz linux-551003fff7235ce935bc1fefb72d12b63a408bd0.tar.bz2 linux-551003fff7235ce935bc1fefb72d12b63a408bd0.zip |
powerpc/pmem: Convert to EXPORT_SYMBOL_GPL
All other architecture export this as GPL symbol
Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@linux.ibm.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://lore.kernel.org/r/20191202064018.155083-1-aneesh.kumar@linux.ibm.com
Diffstat (limited to 'arch')
-rw-r--r-- | arch/powerpc/lib/pmem.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/lib/pmem.c b/arch/powerpc/lib/pmem.c index 377712e85605..0666a8d29596 100644 --- a/arch/powerpc/lib/pmem.c +++ b/arch/powerpc/lib/pmem.c @@ -17,14 +17,14 @@ void arch_wb_cache_pmem(void *addr, size_t size) unsigned long start = (unsigned long) addr; flush_dcache_range(start, start + size); } -EXPORT_SYMBOL(arch_wb_cache_pmem); +EXPORT_SYMBOL_GPL(arch_wb_cache_pmem); void arch_invalidate_pmem(void *addr, size_t size) { unsigned long start = (unsigned long) addr; flush_dcache_range(start, start + size); } -EXPORT_SYMBOL(arch_invalidate_pmem); +EXPORT_SYMBOL_GPL(arch_invalidate_pmem); /* * CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE symbols |