Skip to content

Commit

Permalink
Merge pull request #2743 from altairpearl/fix_drivers
Browse files Browse the repository at this point in the history
drivers : Update include guards to remove leading underscores
  • Loading branch information
PeterKietzmann committed Mar 31, 2015
2 parents dbd4475 + b47cc8d commit 140a76f
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions drivers/include/isl29020.h
Expand Up @@ -18,8 +18,8 @@
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
*/

#ifndef __ISL29020_H
#define __ISL29020_H
#ifndef ISL29020_H
#define ISL29020_H

#include <stdint.h>
#include "periph/i2c.h"
Expand Down Expand Up @@ -109,5 +109,5 @@ int isl29020_disable(isl29020_t *dev);
}
#endif

#endif /* __ISL29020_H */
#endif /* ISL29020_H */
/** @} */
6 changes: 3 additions & 3 deletions drivers/include/l3g4200d.h
Expand Up @@ -20,8 +20,8 @@
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
*/

#ifndef __L3G4200D_H
#define __L3G4200D_H
#ifndef L3G4200D_H
#define L3G4200D_H

#include <stdint.h>

Expand Down Expand Up @@ -139,5 +139,5 @@ int l3g4200d_disable(l3g4200d_t *dev);
}
#endif

#endif /* __L3G4200D_H */
#endif /* L3G4200D_H */
/** @} */
6 changes: 3 additions & 3 deletions drivers/include/ltc4150_arch.h
Expand Up @@ -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" {
Expand Down Expand Up @@ -50,4 +50,4 @@ void ltc4150_interrupt(void);
#endif

/** * @} */
#endif /* __LTC4150_ARCH_H */
#endif /* LTC4150_ARCH_H */
6 changes: 3 additions & 3 deletions drivers/isl29020/include/isl29020-internal.h
Expand Up @@ -16,8 +16,8 @@
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
*/

#ifndef __ISL29020_INTERNAL_H
#define __ISL29020_INTERNAL_H
#ifndef ISL29020_INTERNAL_H
#define ISL29020_INTERNAL_H

#ifdef __cplusplus
extern "C" {
Expand Down Expand Up @@ -69,5 +69,5 @@ extern "C" {
}
#endif

#endif /* __ISL29020_INTERNAL_H */
#endif /* ISL29020_INTERNAL_H */
/** @} */

0 comments on commit 140a76f

Please sign in to comment.