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:
danh-arm 2014-04-07 16:49:37 +01:00
commit e6e54a18f8
1 changed files with 5 additions and 0 deletions

View File

@ -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__ */