diff options
author | Brian Behlendorf <[email protected]> | 2019-07-16 17:22:31 -0700 |
---|---|---|
committer | GitHub <[email protected]> | 2019-07-16 17:22:31 -0700 |
commit | 8062b7686aa2c3a22824b9a7c83cf01a5fa457a0 (patch) | |
tree | e7e316a0cdadec44f3d6bde7adaf917dccdd6370 /config | |
parent | 3b03ff22761da0f5fad9a781025facfc6e555522 (diff) |
Minor style cleanup
Resolve an assortment of style inconsistencies including
use of white space, typos, capitalization, and line wrapping.
There is no functional change.
Reviewed-by: Tony Hutter <[email protected]>
Reviewed-by: George Melikov <[email protected]>
Signed-off-by: Brian Behlendorf <[email protected]>
Closes #9030
Diffstat (limited to 'config')
-rw-r--r-- | config/kernel-fpu.m4 | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/config/kernel-fpu.m4 b/config/kernel-fpu.m4 index 31bf35f83..0e622e859 100644 --- a/config/kernel-fpu.m4 +++ b/config/kernel-fpu.m4 @@ -25,7 +25,8 @@ AC_DEFUN([ZFS_AC_KERNEL_FPU], [ #include <asm/fpu/api.h> ],[ ],[ - AC_DEFINE(HAVE_KERNEL_FPU_API_HEADER, 1, [kernel has asm/fpu/api.h]) + AC_DEFINE(HAVE_KERNEL_FPU_API_HEADER, 1, + [kernel has asm/fpu/api.h]) AC_MSG_RESULT(asm/fpu/api.h) ],[ AC_MSG_RESULT(i387.h & xcr.h) @@ -46,8 +47,10 @@ AC_DEFUN([ZFS_AC_KERNEL_FPU], [ kernel_fpu_end(); ], [kernel_fpu_begin], [arch/x86/kernel/fpu/core.c], [ AC_MSG_RESULT(kernel_fpu_*) - AC_DEFINE(HAVE_KERNEL_FPU, 1, [kernel has kernel_fpu_* functions]) - AC_DEFINE(KERNEL_EXPORTS_X86_FPU, 1, [kernel exports FPU functions]) + AC_DEFINE(HAVE_KERNEL_FPU, 1, + [kernel has kernel_fpu_* functions]) + AC_DEFINE(KERNEL_EXPORTS_X86_FPU, 1, + [kernel exports FPU functions]) ],[ ZFS_LINUX_TRY_COMPILE_SYMBOL([ #include <linux/module.h> |