diff options
author | Will Deacon <will@kernel.org> | 2022-12-06 11:06:47 +0000 |
---|---|---|
committer | Will Deacon <will@kernel.org> | 2022-12-06 11:06:47 +0000 |
commit | 1a916ed79bc0e94c98001e36403b5c014a222fb4 (patch) | |
tree | 094529a3b62e7077fc5645c80741103239fbe761 | |
parent | 5def4a97913a8706a833a524a8808f1b296ca40c (diff) | |
parent | aaeca98456431a8d9382ecf48ac4843e252c07b3 (diff) |
Merge branch 'for-next/fpsimd' into for-next/core
* for-next/fpsimd:
arm64/fpsimd: Make kernel_neon_ API _GPL
-rw-r--r-- | arch/arm64/kernel/fpsimd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm64/kernel/fpsimd.c b/arch/arm64/kernel/fpsimd.c index 23834d96d1e7..1fe7d65096ac 100644 --- a/arch/arm64/kernel/fpsimd.c +++ b/arch/arm64/kernel/fpsimd.c @@ -1838,7 +1838,7 @@ void kernel_neon_begin(void) /* Invalidate any task state remaining in the fpsimd regs: */ fpsimd_flush_cpu_state(); } -EXPORT_SYMBOL(kernel_neon_begin); +EXPORT_SYMBOL_GPL(kernel_neon_begin); /* * kernel_neon_end(): give the CPU FPSIMD registers back to the current task @@ -1856,7 +1856,7 @@ void kernel_neon_end(void) put_cpu_fpsimd_context(); } -EXPORT_SYMBOL(kernel_neon_end); +EXPORT_SYMBOL_GPL(kernel_neon_end); #ifdef CONFIG_EFI |