1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

Merge pull request #2743 from altairpearl/fix_drivers

drivers : Update include guards to remove leading underscores
This commit is contained in:
Peter Kietzmann 2015-03-31 08:55:16 +02:00
commit 140a76faa2
4 changed files with 12 additions and 12 deletions

View File

@ -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"
@ -109,5 +109,5 @@ int isl29020_disable(isl29020_t *dev);
}
#endif
#endif /* __ISL29020_H */
#endif /* ISL29020_H */
/** @} */

View File

@ -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>
@ -139,5 +139,5 @@ int l3g4200d_disable(l3g4200d_t *dev);
}
#endif
#endif /* __L3G4200D_H */
#endif /* L3G4200D_H */
/** @} */

View File

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

View File

@ -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" {
@ -69,5 +69,5 @@ extern "C" {
}
#endif
#endif /* __ISL29020_INTERNAL_H */
#endif /* ISL29020_INTERNAL_H */
/** @} */