VisionFive2 Linux kernel

StarFive Tech Linux Kernel for VisionFive (JH7110) boards (mirror)

More than 9999 Commits   33 Branches   55 Tags
author: Randy Dunlap <rdunlap@infradead.org> 2021-05-20 22:13:43 -0700 committer: Thomas Bogendoerfer <tsbogend@alpha.franken.de> 2021-05-25 15:18:59 +0200 commit: 6855adc2c5d9dff08be9e6e01deb319738b28780 parent: ff4cff962a7eedc73e54b5096693da7f86c61346
Commit Summary:
MIPS: launch.h: add include guard to prevent build errors
Diffstat:
1 file changed, 4 insertions, 0 deletions
diff --git a/arch/mips/include/asm/mips-boards/launch.h b/arch/mips/include/asm/mips-boards/launch.h
index f93aa5ee2e2e..3481ed4c117b 100644
--- a/arch/mips/include/asm/mips-boards/launch.h
+++ b/arch/mips/include/asm/mips-boards/launch.h
@@ -3,6 +3,9 @@
  *
  */
 
+#ifndef _ASM_MIPS_BOARDS_LAUNCH_H
+#define _ASM_MIPS_BOARDS_LAUNCH_H
+
 #ifndef _ASSEMBLER_
 
 struct cpulaunch {
@@ -34,3 +37,5 @@ struct cpulaunch {
 
 /* Polling period in count cycles for secondary CPU's */
 #define LAUNCHPERIOD	10000
+
+#endif /* _ASM_MIPS_BOARDS_LAUNCH_H */