From: Tom Rini Date: Mon, 19 Apr 2021 20:18:49 +0000 (-0400) Subject: sysinfo.h: Add re-inclusion guard X-Git-Tag: v2021.07-rc1~11^2~9 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=56a3433ef559512e731a943d8af7965973d090df;p=pandora-u-boot.git sysinfo.h: Add re-inclusion guard Add #ifndef __SYSINFO_H__ ... #endif to prevent re-inclusion of this file. Signed-off-by: Tom Rini --- diff --git a/include/sysinfo.h b/include/sysinfo.h index 68fad25a065..8054d4d4a1f 100644 --- a/include/sysinfo.h +++ b/include/sysinfo.h @@ -4,6 +4,9 @@ * Mario Six, Guntermann & Drunck GmbH, mario.six@gdsys.cc */ +#ifndef __SYSINFO_H__ +#define __SYSINFO_H__ + struct udevice; /* @@ -228,3 +231,4 @@ static inline int sysinfo_get_fit_loadable(struct udevice *dev, int index, } #endif +#endif