Skip to content

Commit

Permalink
Fix missing semicolons in commit 1f196e3
Browse files Browse the repository at this point in the history
Reviewed-by: Tino Reichardt <milky-zfs@mcmilk.de>
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: WHR <msl0000023508@gmail.com>
Closes openzfs#14623
  • Loading branch information
Low-power authored and lundman committed Mar 17, 2023
1 parent b682915 commit a133b84
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions include/os/linux/kernel/linux/simd_powerpc.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a133b84

Please sign in to comment.