HAOUAS Elyes (ehaouas@noos.fr) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/6440
-gerrit
commit 92ab3cb78ad948b754472b41ec1c37cb8f255d56 Author: Elyes HAOUAS ehaouas@noos.fr Date: Fri Aug 1 13:06:44 2014 +0200
amd/torpedo/Oem.h: Add missing header guard
Change-Id: I7abc44ee855769eca044ccc17ce612dcee388627 Signed-off-by: Elyes HAOUAS ehaouas@noos.fr --- src/mainboard/amd/torpedo/Oem.h | 6 ++++++ 1 file changed, 6 insertions(+)
diff --git a/src/mainboard/amd/torpedo/Oem.h b/src/mainboard/amd/torpedo/Oem.h index 915182e..d7fd2ce 100644 --- a/src/mainboard/amd/torpedo/Oem.h +++ b/src/mainboard/amd/torpedo/Oem.h @@ -16,6 +16,10 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ + +#ifndef OEM_H +#define OEM_H + #ifndef BIOS_SIZE #define BIOS_SIZE 0x04 //04 - 1MB #endif @@ -221,3 +225,5 @@ * */ #define PCIB_SSID 0x780F1022 + +#endif /* OEM_H */