misc: fix malformed include guards
This commit is contained in:
parent
0edd8f0e67
commit
d041e3a066
|
@ -18,8 +18,8 @@
|
|||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#ifndef INCULUDE_TIMING_H
|
||||
#define INCULUDE_TIMING_H
|
||||
#ifndef INCLUDE_TIMING_H
|
||||
#define INCLUDE_TIMING_H
|
||||
|
||||
struct platform_timeout {
|
||||
uint32_t time;
|
||||
|
@ -28,4 +28,4 @@ struct platform_timeout {
|
|||
extern int32_t swj_delay_cnt;
|
||||
uint32_t platform_time_ms(void);
|
||||
|
||||
#endif /* INCULUDE_TIMING_H */
|
||||
#endif /* INCLUDE_TIMING_H */
|
||||
|
|
|
@ -17,8 +17,8 @@
|
|||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#ifndef PLATFORMS_HOSTED_BMP_REMOTE_H_
|
||||
#define PLATFORMS_HOSTED_BMP_REMOTE_H_
|
||||
#ifndef PLATFORMS_HOSTED_BMP_REMOTE_H
|
||||
#define PLATFORMS_HOSTED_BMP_REMOTE_H
|
||||
|
||||
#include "jtagtap.h"
|
||||
#include "adiv5.h"
|
||||
|
|
|
@ -52,4 +52,4 @@ typedef enum gdb_reg_save_restore {
|
|||
// The strings for the "save-restore" field of a register tag, respective to its gdb_reg_save_restore_e value.
|
||||
extern const char *gdb_reg_save_restore_strings[];
|
||||
|
||||
#endif
|
||||
#endif /* TARGET_GDB_REG_H */
|
||||
|
|
Loading…
Reference in New Issue