Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

MIPS: vdso: Add include guard to asm/vdso/vdso.h

An upcomming patch will lead to the header file being included multiple
times from the same source file.

Add an include guard so this is possible.

Signed-off-by: Thomas Weißschuh <thomas.weissschuh@linutronix.de>
Signed-off-by: Thomas Gleixner <tglx@kernel.org>
Signed-off-by: Borislav Petkov (AMD) <bp@alien8.de>
Link: https://patch.msgid.link/20260227-vdso-header-cleanups-v2-7-35d60acf7410@linutronix.de

authored by

Thomas Weißschuh and committed by
Borislav Petkov (AMD)
a9d7e1ea 55434071

+5
+5
arch/mips/include/asm/vdso/vdso.h
··· 4 4 * Author: Alex Smith <alex.smith@imgtec.com> 5 5 */ 6 6 7 + #ifndef __ASM_VDSO_VDSO_H 8 + #define __ASM_VDSO_VDSO_H 9 + 7 10 #include <asm/sgidefs.h> 8 11 #include <vdso/page.h> 9 12 ··· 73 70 #endif /* CONFIG_CLKSRC_MIPS_GIC */ 74 71 75 72 #endif /* __ASSEMBLER__ */ 73 + 74 + #endif /* __ASM_VDSO_VDSO_H */