From: Tom Rini Date: Mon, 19 Apr 2021 20:18:49 +0000 (-0400) Subject: sysinfo.h: Add re-inclusion guard X-Git-Tag: v2025.01-rc5-pxa1908~1910^2~9 X-Git-Url: http://git.dujemihanovic.xyz/img/static/git-logo.png?a=commitdiff_plain;h=56a3433ef559512e731a943d8af7965973d090df;p=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 68fad25a06..8054d4d4a1 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