misc: fix malformed include guards

This commit is contained in:
Rafael Silva 2022-08-30 18:24:05 +01:00 committed by Rachel Mant
parent 0edd8f0e67
commit d041e3a066
3 changed files with 6 additions and 6 deletions

View File

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

View File

@ -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"

View File

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