summaryrefslogtreecommitdiff
path: root/arch/m68k/math-emu/fp_arith.h
diff options
context:
space:
mode:
authorGeert Uytterhoeven <geert@linux-m68k.org>2023-08-17 17:44:49 +0300
committerGeert Uytterhoeven <geert@linux-m68k.org>2023-10-06 11:03:00 +0300
commit8893eb3de0ec14367466e29cfd8d962d1e615b75 (patch)
treeb7a7c6b01a87261facae943100337a33c8877458 /arch/m68k/math-emu/fp_arith.h
parent54b76dc9707a12b063bcb4a5d68bdaad2dc28514 (diff)
downloadlinux-8893eb3de0ec14367466e29cfd8d962d1e615b75.tar.xz
m68k: math-emu: Sanitize include guards
Some include guards start with an underscore, others don't. Some comments do not match the actual include guard. Make them uniform, adhering to the "FP_<FOO>_H" format. Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org> Link: https://lore.kernel.org/r/8c84c8bf06c0c1e463c47f071891e2e83d5abdd2.1692283195.git.geert@linux-m68k.org
Diffstat (limited to 'arch/m68k/math-emu/fp_arith.h')
-rw-r--r--arch/m68k/math-emu/fp_arith.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/m68k/math-emu/fp_arith.h b/arch/m68k/math-emu/fp_arith.h
index 0fd3ed217f66..85bdd83b9dd6 100644
--- a/arch/m68k/math-emu/fp_arith.h
+++ b/arch/m68k/math-emu/fp_arith.h
@@ -12,8 +12,8 @@
*/
-#ifndef FP_ARITH_H
-#define FP_ARITH_H
+#ifndef _FP_ARITH_H
+#define _FP_ARITH_H
/* easy ones */
struct fp_ext *
@@ -47,4 +47,4 @@ fp_fintrz(struct fp_ext *dest, struct fp_ext *src);
struct fp_ext *
fp_fscale(struct fp_ext *dest, struct fp_ext *src);
-#endif /* FP_ARITH__H */
+#endif /* _FP_ARITH_H */