From: Heiko Carstens Date: Wed, 30 Apr 2008 11:38:35 +0000 (+0200) Subject: [S390] Add missing ifndef/define to include/asm-s390/sysinfo.h. X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=f291e17227cf30432ca7c402220f62e6924dd97d;p=mv-sheeva.git [S390] Add missing ifndef/define to include/asm-s390/sysinfo.h. In order to protect against compile breakage in case the header file gets included twice. Signed-off-by: Heiko Carstens Signed-off-by: Martin Schwidefsky --- diff --git a/include/asm-s390/sysinfo.h b/include/asm-s390/sysinfo.h index abe10ae15e4..79d01343f8b 100644 --- a/include/asm-s390/sysinfo.h +++ b/include/asm-s390/sysinfo.h @@ -11,6 +11,9 @@ * Christian Borntraeger */ +#ifndef __ASM_S390_SYSINFO_H +#define __ASM_S390_SYSINFO_H + struct sysinfo_1_1_1 { char reserved_0[32]; char manufacturer[16]; @@ -114,3 +117,5 @@ static inline int stsi(void *sysinfo, int fc, int sel1, int sel2) : "cc", "memory"); return r0; } + +#endif /* __ASM_S390_SYSINFO_H */