Browse Source

ARM: vfp: Add include guards

Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Florian Fainelli 10 years ago
parent
commit
e7f0f37649
1 changed files with 5 additions and 0 deletions
  1. 5 0
      arch/arm/include/asm/vfp.h

+ 5 - 0
arch/arm/include/asm/vfp.h

@@ -5,6 +5,9 @@
  * First, the standard VFP set.
  */
 
+#ifndef __ASM_VFP_H
+#define __ASM_VFP_H
+
 #define FPSID			cr0
 #define FPSCR			cr1
 #define MVFR1			cr6
@@ -87,3 +90,5 @@
 #define VFPOPDESC_UNUSED_BIT	(24)
 #define VFPOPDESC_UNUSED_MASK	(0xFF << VFPOPDESC_UNUSED_BIT)
 #define VFPOPDESC_OPDESC_MASK	(~(VFPOPDESC_LENGTH_MASK | VFPOPDESC_UNUSED_MASK))
+
+#endif /* __ASM_VFP_H */