Removed '_' symbols in include guards

which are violating DCL51-CPP rule, closing #46
This commit is contained in:
Nikolaj Schlej 2016-04-09 12:47:19 +02:00
parent 1dddafd4b3
commit 80a2d57f62
28 changed files with 103 additions and 98 deletions

View file

@ -14,8 +14,8 @@ routines without the need of backward traversal
*/
#ifndef __PARSINGDATA_H__
#define __PARSINGDATA_H__
#ifndef PARSINGDATA_H
#define PARSINGDATA_H
#include "basetypes.h"
@ -96,6 +96,7 @@ typedef struct _NVRAM_PARSING_DATA {
//};
} NVRAM_PARSING_DATA;
// TODO: add more NVRAM-related PD
typedef struct _PARSING_DATA {
UINT8 emptyByte;
@ -114,4 +115,4 @@ typedef struct _PARSING_DATA {
};
} PARSING_DATA;
#endif
#endif // NVRAM_H