aboutsummaryrefslogtreecommitdiffstats
path: root/include/os
diff options
context:
space:
mode:
authorWHR <[email protected]>2023-03-14 21:24:30 +0800
committerBrian Behlendorf <[email protected]>2023-03-15 10:30:02 -0700
commitf31b0d4e88f2609a39ad175b10505a11945d472a (patch)
tree2bb5b1b07d707eecbe982f952edc724155cb8616 /include/os
parent8b7342d2904dbcdbbf96279c06ae8cb10948fb8a (diff)
Fix missing semicolons in commit 1f196e3
Reviewed-by: Tino Reichardt <[email protected]> Reviewed-by: Brian Behlendorf <[email protected]> Signed-off-by: WHR <[email protected]> Closes #14623
Diffstat (limited to 'include/os')
-rw-r--r--include/os/linux/kernel/linux/simd_powerpc.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/os/linux/kernel/linux/simd_powerpc.h b/include/os/linux/kernel/linux/simd_powerpc.h
index bd7328d7d..b9ff69ac8 100644
--- a/include/os/linux/kernel/linux/simd_powerpc.h
+++ b/include/os/linux/kernel/linux/simd_powerpc.h
@@ -67,15 +67,15 @@
#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 5, 0)
#ifdef CONFIG_ALTIVEC
-#define ENABLE_KERNEL_ALTIVEC enable_kernel_altivec()
-#define DISABLE_KERNEL_ALTIVEC disable_kernel_altivec()
+#define ENABLE_KERNEL_ALTIVEC enable_kernel_altivec();
+#define DISABLE_KERNEL_ALTIVEC disable_kernel_altivec();
#else
#define ENABLE_KERNEL_ALTIVEC
#define DISABLE_KERNEL_ALTIVEC
#endif
#ifdef CONFIG_VSX
-#define ENABLE_KERNEL_VSX enable_kernel_vsx()
-#define DISABLE_KERNEL_VSX disable_kernel_vsx()
+#define ENABLE_KERNEL_VSX enable_kernel_vsx();
+#define DISABLE_KERNEL_VSX disable_kernel_vsx();
#else
#define ENABLE_KERNEL_VSX
#define DISABLE_KERNEL_VSX