Skip to content

Commit

Permalink
*: fix mismatching endifs for header guards
Browse files Browse the repository at this point in the history
  • Loading branch information
OlegHahm committed Jan 18, 2017
1 parent 4b25383 commit 408db23
Show file tree
Hide file tree
Showing 22 changed files with 22 additions and 22 deletions.
2 changes: 1 addition & 1 deletion boards/chronos/drivers/include/display.h
Original file line number Diff line number Diff line change
Expand Up @@ -463,4 +463,4 @@ void display_all_off(void);
}
#endif

#endif /* DISPLAY_ */
#endif /* DISPLAY_H */
2 changes: 1 addition & 1 deletion boards/chronos/include/buttons.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ extern "C" {
}
#endif

#endif
#endif /* BUTTONS_H */
2 changes: 1 addition & 1 deletion boards/msb-430-common/include/board_common.h
Original file line number Diff line number Diff line change
Expand Up @@ -61,5 +61,5 @@ extern "C" {
}
#endif

#endif /* BOARD-CONF_H */
#endif /* BOARD_COMMON_H */
/** @} */
2 changes: 1 addition & 1 deletion boards/pba-d-01-kw2x/include/board.h
Original file line number Diff line number Diff line change
Expand Up @@ -132,5 +132,5 @@ void board_init(void);
}
#endif

#endif /* __BOARD_H */
#endif /* BOARD_H */
/** @} */
2 changes: 1 addition & 1 deletion boards/pba-d-01-kw2x/include/periph_conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -293,5 +293,5 @@ static const pwm_conf_t pwm_config[] = {
}
#endif

#endif /* __PERIPH_CONF_H */
#endif /* PERIPH_CONF_H */
/** @} */
2 changes: 1 addition & 1 deletion boards/qemu-i386/include/board.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ extern "C" {
}
#endif

#endif
#endif /* QEMU_I386_BOARD_H */

/**
* @}
Expand Down
2 changes: 1 addition & 1 deletion boards/qemu-i386/include/cpu_conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@ extern "C" {
}
#endif

#endif
#endif /* QEMU_I386_CPU_CONF_H */

/** @} */
2 changes: 1 addition & 1 deletion boards/telosb/include/board-conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ extern "C" {
}
#endif

#endif /* BOARD-CONF_H */
#endif /* BOARD_CONF_H */
2 changes: 1 addition & 1 deletion boards/z1/include/board-conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ extern "C" {
#endif

/** @} */
#endif /* BOARD-CONF_H */
#endif /* BOARD_CONF_H */
2 changes: 1 addition & 1 deletion cpu/arm7_common/include/VIC.h
Original file line number Diff line number Diff line change
Expand Up @@ -89,4 +89,4 @@ bool cpu_install_irq(int IntNumber, void *HandlerAddr, int Priority);
#endif

/** @} */
#endif /* VIC_H_*/
#endif /* VIC_H */
2 changes: 1 addition & 1 deletion cpu/arm7_common/include/iap.h
Original file line number Diff line number Diff line change
Expand Up @@ -64,4 +64,4 @@ uint8_t iap_get_sector(uint32_t addr);
#endif


#endif /*IAP_H_*/
#endif /* IAP_H */
2 changes: 1 addition & 1 deletion cpu/k60/include/system_MK60D10.h
Original file line number Diff line number Diff line change
Expand Up @@ -77,4 +77,4 @@ void SystemCoreClockUpdate(void);
}
#endif

#endif /* #if !defined(SYSTEM_MK60D10_H_) */
#endif /* #if !defined(SYSTEM_MK60D10_H) */
2 changes: 1 addition & 1 deletion cpu/stm32l1/include/cpu_conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,6 @@ extern "C" {
}
#endif

#endif /* __CPU_CONF_H */
#endif /* CPUCONF_H */
/** @} */
/** @} */
2 changes: 1 addition & 1 deletion cpu/x86/include/cpu.h
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,6 @@ static inline void cpu_print_last_instruction(void)
}
#endif

#endif
#endif /* CPU_X86_CPU_H */

/** @} */
2 changes: 1 addition & 1 deletion drivers/include/kw2xrf.h
Original file line number Diff line number Diff line change
Expand Up @@ -159,5 +159,5 @@ extern const gnrc_netdev_driver_t kw2xrf_driver;
}
#endif

#endif
#endif /* MKW2XDRF_H */
/** @} */
2 changes: 1 addition & 1 deletion drivers/include/sht11.h
Original file line number Diff line number Diff line change
Expand Up @@ -105,4 +105,4 @@ uint8_t sht11_read_status(uint8_t *p_value, uint8_t *p_checksum);
#endif

/** @} */
#endif /*SHT11_H_*/
#endif /* SHT11_H */
2 changes: 1 addition & 1 deletion examples/riot_and_cpp/c_functions.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,4 @@ int day_of_week(int day, int month, int year);
#endif

/** @} */
#endif // _C_FUNCTIONS_H
#endif /* C_FUNCTIONS_H */
2 changes: 1 addition & 1 deletion examples/riot_and_cpp/cpp_class.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,4 @@ class cpp_class
};

/** @} */
#endif //__CPP_CLASS__
#endif /* CPP_CLASS_H */
2 changes: 1 addition & 1 deletion sys/include/crypto/modes/ctr.h
Original file line number Diff line number Diff line change
Expand Up @@ -70,4 +70,4 @@ int cipher_decrypt_ctr(cipher_t* cipher, uint8_t nonce_counter[16],
}
#endif

#endif /* CRYPTO_MODES_CTR_H_*/
#endif /* CRYPTO_MODES_CTR_H */
2 changes: 1 addition & 1 deletion sys/include/crypto/modes/ecb.h
Original file line number Diff line number Diff line change
Expand Up @@ -59,4 +59,4 @@ int cipher_decrypt_ecb(cipher_t* cipher, uint8_t* input, size_t length,
}
#endif

#endif /* CRYPTO_MODES_ECB_H_*/
#endif /* CRYPTO_MODES_ECB_H */
2 changes: 1 addition & 1 deletion sys/include/xtimer/implementation.h
Original file line number Diff line number Diff line change
Expand Up @@ -302,4 +302,4 @@ static inline bool xtimer_less64(xtimer_ticks64_t a, xtimer_ticks64_t b)
}
#endif

#endif
#endif /* XTIMER_IMPLEMENTATION_H */
2 changes: 1 addition & 1 deletion sys/posix/pthread/include/pthread_spin.h
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ int pthread_spin_unlock(pthread_spinlock_t *lock);
}
#endif

#endif
#endif /* SYS_POSIX_PTHREAD_SPIN_H */

/**
* @}
Expand Down

0 comments on commit 408db23

Please sign in to comment.