From b47cc8d93d5643ad9bea68488d9ef72359e75c82 Mon Sep 17 00:00:00 2001 From: altairpearl Date: Mon, 30 Mar 2015 19:28:12 +0530 Subject: [PATCH] drivers : Update include guards to remove leading underscores --- drivers/include/isl29020.h | 6 +++--- drivers/include/l3g4200d.h | 6 +++--- drivers/include/ltc4150_arch.h | 6 +++--- drivers/isl29020/include/isl29020-internal.h | 6 +++--- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/drivers/include/isl29020.h b/drivers/include/isl29020.h index 26e4dfe9476f..ddbe05295ec2 100644 --- a/drivers/include/isl29020.h +++ b/drivers/include/isl29020.h @@ -18,8 +18,8 @@ * @author Hauke Petersen */ -#ifndef __ISL29020_H -#define __ISL29020_H +#ifndef ISL29020_H +#define ISL29020_H #include #include "periph/i2c.h" @@ -109,5 +109,5 @@ int isl29020_disable(isl29020_t *dev); } #endif -#endif /* __ISL29020_H */ +#endif /* ISL29020_H */ /** @} */ diff --git a/drivers/include/l3g4200d.h b/drivers/include/l3g4200d.h index 279a1dcfe422..8eee2278d616 100644 --- a/drivers/include/l3g4200d.h +++ b/drivers/include/l3g4200d.h @@ -20,8 +20,8 @@ * @author Hauke Petersen */ -#ifndef __L3G4200D_H -#define __L3G4200D_H +#ifndef L3G4200D_H +#define L3G4200D_H #include @@ -139,5 +139,5 @@ int l3g4200d_disable(l3g4200d_t *dev); } #endif -#endif /* __L3G4200D_H */ +#endif /* L3G4200D_H */ /** @} */ diff --git a/drivers/include/ltc4150_arch.h b/drivers/include/ltc4150_arch.h index 72c22d2ebb62..266666646993 100644 --- a/drivers/include/ltc4150_arch.h +++ b/drivers/include/ltc4150_arch.h @@ -6,8 +6,8 @@ * directory for more details. */ -#ifndef __LTC4150_ARCH_H -#define __LTC4150_ARCH_H +#ifndef LTC4150_ARCH_H +#define LTC4150_ARCH_H #ifdef __cplusplus extern "C" { @@ -50,4 +50,4 @@ void ltc4150_interrupt(void); #endif /** * @} */ -#endif /* __LTC4150_ARCH_H */ +#endif /* LTC4150_ARCH_H */ diff --git a/drivers/isl29020/include/isl29020-internal.h b/drivers/isl29020/include/isl29020-internal.h index 7df0b15fbdcf..98e702423147 100644 --- a/drivers/isl29020/include/isl29020-internal.h +++ b/drivers/isl29020/include/isl29020-internal.h @@ -16,8 +16,8 @@ * @author Hauke Petersen */ -#ifndef __ISL29020_INTERNAL_H -#define __ISL29020_INTERNAL_H +#ifndef ISL29020_INTERNAL_H +#define ISL29020_INTERNAL_H #ifdef __cplusplus extern "C" { @@ -69,5 +69,5 @@ extern "C" { } #endif -#endif /* __ISL29020_INTERNAL_H */ +#endif /* ISL29020_INTERNAL_H */ /** @} */