From 1535a42b68517142a13a7168ee1c1ae62d91d3b8 Mon Sep 17 00:00:00 2001 From: Vencislav Atanasov Date: Sat, 23 Nov 2024 11:04:17 +0200 Subject: [PATCH] Add include guard to s5l8700.h Change-Id: I246a626c788bc0173cb7709fb5b004bdaac97883 --- firmware/export/s5l8700.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/firmware/export/s5l8700.h b/firmware/export/s5l8700.h index 577129ff74..9e4b213988 100644 --- a/firmware/export/s5l8700.h +++ b/firmware/export/s5l8700.h @@ -19,6 +19,9 @@ * ****************************************************************************/ +#ifndef __S5L8700_H__ +#define __S5L8700_H__ + #ifndef ASM #include #endif @@ -811,3 +814,5 @@ // #define USB_DW_ARCH_SLAVE #endif /* CONFIG_CPU==S5L8701 */ + +#endif /* __S5L8700_H__ */