From: Ralf Baechle Date: Sun, 23 Oct 2005 12:44:31 +0000 (+0100) Subject: Protect against multiple inclusion. X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=a663bf906dce4bfa4d620ecc6b8ac6ef958eb7c2;p=GitHub%2FLineageOS%2Fandroid_kernel_samsung_universal7580.git Protect against multiple inclusion. Signed-off-by: Ralf Baechle --- diff --git a/arch/mips/math-emu/ieee754.h b/arch/mips/math-emu/ieee754.h index 5689b0cf018..c5bdcd25439 100644 --- a/arch/mips/math-emu/ieee754.h +++ b/arch/mips/math-emu/ieee754.h @@ -22,6 +22,8 @@ * Kevin D. Kissell, kevink@mips.com and Carsten Langgard, carstenl@mips.com * Copyright (C) 2000 MIPS Technologies, Inc. All rights reserved. */ +#ifndef __ARCH_MIPS_MATH_EMU_IEEE754_H +#define __ARCH_MIPS_MATH_EMU_IEEE754_H #include #include @@ -466,3 +468,5 @@ extern void ieee754_xcpt(struct ieee754xctx *xcp); /* compat */ #define ieee754dp_fix(x) ieee754dp_tint(x) #define ieee754sp_fix(x) ieee754sp_tint(x) + +#endif /* __ARCH_MIPS_MATH_EMU_IEEE754_H */