mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-19 02:54:24 +00:00
Merge pull request #35 from sandrine-bailleux/sb/add-missing-include-guard
Add missing #include guard in xlat_tables.h
This commit is contained in:
commit
e6e54a18f8
1 changed files with 5 additions and 0 deletions
|
@ -28,6 +28,9 @@
|
|||
* POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#ifndef __XLAT_TABLES_H__
|
||||
#define __XLAT_TABLES_H__
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
/*
|
||||
|
@ -64,3 +67,5 @@ extern void mmap_add(const mmap_region *mm);
|
|||
extern void init_xlat_tables(void);
|
||||
|
||||
extern uint64_t l1_xlation_table[];
|
||||
|
||||
#endif /* __XLAT_TABLES_H__ */
|
||||
|
|
Loading…
Add table
Reference in a new issue