drivers : Update include guards to remove leading underscores

This commit is contained in:
altairpearl 2015-03-30 19:28:12 +05:30
parent dbd4475bfe
commit b47cc8d93d
4 changed files with 12 additions and 12 deletions

View File

@ -18,8 +18,8 @@
* @author Hauke Petersen <hauke.petersen@fu-berlin.de> * @author Hauke Petersen <hauke.petersen@fu-berlin.de>
*/ */
#ifndef __ISL29020_H #ifndef ISL29020_H
#define __ISL29020_H #define ISL29020_H
#include <stdint.h> #include <stdint.h>
#include "periph/i2c.h" #include "periph/i2c.h"
@ -109,5 +109,5 @@ int isl29020_disable(isl29020_t *dev);
} }
#endif #endif
#endif /* __ISL29020_H */ #endif /* ISL29020_H */
/** @} */ /** @} */

View File

@ -20,8 +20,8 @@
* @author Hauke Petersen <hauke.petersen@fu-berlin.de> * @author Hauke Petersen <hauke.petersen@fu-berlin.de>
*/ */
#ifndef __L3G4200D_H #ifndef L3G4200D_H
#define __L3G4200D_H #define L3G4200D_H
#include <stdint.h> #include <stdint.h>
@ -139,5 +139,5 @@ int l3g4200d_disable(l3g4200d_t *dev);
} }
#endif #endif
#endif /* __L3G4200D_H */ #endif /* L3G4200D_H */
/** @} */ /** @} */

View File

@ -6,8 +6,8 @@
* directory for more details. * directory for more details.
*/ */
#ifndef __LTC4150_ARCH_H #ifndef LTC4150_ARCH_H
#define __LTC4150_ARCH_H #define LTC4150_ARCH_H
#ifdef __cplusplus #ifdef __cplusplus
extern "C" { extern "C" {
@ -50,4 +50,4 @@ void ltc4150_interrupt(void);
#endif #endif
/** * @} */ /** * @} */
#endif /* __LTC4150_ARCH_H */ #endif /* LTC4150_ARCH_H */

View File

@ -16,8 +16,8 @@
* @author Hauke Petersen <hauke.petersen@fu-berlin.de> * @author Hauke Petersen <hauke.petersen@fu-berlin.de>
*/ */
#ifndef __ISL29020_INTERNAL_H #ifndef ISL29020_INTERNAL_H
#define __ISL29020_INTERNAL_H #define ISL29020_INTERNAL_H
#ifdef __cplusplus #ifdef __cplusplus
extern "C" { extern "C" {
@ -69,5 +69,5 @@ extern "C" {
} }
#endif #endif
#endif /* __ISL29020_INTERNAL_H */ #endif /* ISL29020_INTERNAL_H */
/** @} */ /** @} */