summaryrefslogtreecommitdiff
path: root/arch/m68k/math-emu/fp_trig.h
diff options
context:
space:
mode:
authorGeert Uytterhoeven <geert@linux-m68k.org>2023-08-17 16:44:49 +0200
committerGeert Uytterhoeven <geert@linux-m68k.org>2023-10-06 10:03:00 +0200
commit8893eb3de0ec14367466e29cfd8d962d1e615b75 (patch)
treeb7a7c6b01a87261facae943100337a33c8877458 /arch/m68k/math-emu/fp_trig.h
parent54b76dc9707a12b063bcb4a5d68bdaad2dc28514 (diff)
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_trig.h')
-rw-r--r--arch/m68k/math-emu/fp_trig.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/m68k/math-emu/fp_trig.h b/arch/m68k/math-emu/fp_trig.h
index af8b247e9c98..52f0cc31cfe4 100644
--- a/arch/m68k/math-emu/fp_trig.h
+++ b/arch/m68k/math-emu/fp_trig.h
@@ -15,8 +15,8 @@
*/
-#ifndef FP_TRIG_H
-#define FP_TRIG_H
+#ifndef _FP_TRIG_H
+#define _FP_TRIG_H
#include "fp_emu.h"
@@ -29,4 +29,4 @@
they return a status code, which should end up in %d0, if all goes
well. */
-#endif /* FP_TRIG__H */
+#endif /* _FP_TRIG_H */