diff options
author | Vencislav Atanasov <user890104@freemyipod.org> | 2024-11-23 11:04:17 +0200 |
---|---|---|
committer | Solomon Peachy <pizza@shaftnet.org> | 2024-11-23 17:19:18 -0500 |
commit | 1535a42b68517142a13a7168ee1c1ae62d91d3b8 (patch) | |
tree | 1954ea4043a5366f7c90d1cfbbef836cccd07ac1 | |
parent | f4bbddb044cc0c55434d1f4dec22f340f1d295b3 (diff) | |
download | rockbox-1535a42b68.tar.gz rockbox-1535a42b68.zip |
Add include guard to s5l8700.h
Change-Id: I246a626c788bc0173cb7709fb5b004bdaac97883
-rw-r--r-- | firmware/export/s5l8700.h | 5 |
1 files changed, 5 insertions, 0 deletions
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 <stdint.h> #endif @@ -811,3 +814,5 @@ // #define USB_DW_ARCH_SLAVE #endif /* CONFIG_CPU==S5L8701 */ + +#endif /* __S5L8700_H__ */ |