drivers/include/netdev: Repair header file include guards

This commit is contained in:
Alexandru Caciulescu 2015-03-23 22:05:15 +02:00
parent a25a4d4fe5
commit 3d39c855c6
3 changed files with 9 additions and 9 deletions

View File

@ -17,8 +17,8 @@
*
*/
#ifndef __NETDEV_802154_H_
#define __NETDEV_802154_H_
#ifndef NETDEV_802154_H_
#define NETDEV_802154_H_
#include <stdint.h>
@ -422,7 +422,7 @@ netdev_802154_tx_status_t netdev_802154_send(netdev_t *dev,
}
#endif
#endif /* __NETDEV_802154_H_ */
#endif /* NETDEV_802154_H_ */
/**
* @}

View File

@ -16,8 +16,8 @@
* @author Martine Lenders <mlenders@inf.fu-berlin.de>
*/
#ifndef __NETDEV_BASE_H_
#define __NETDEV_BASE_H_
#ifndef NETDEV_BASE_H_
#define NETDEV_BASE_H_
#include <errno.h>
#include <stdint.h>
@ -402,7 +402,7 @@ static inline void netdev_hlist_remove(netdev_hlist_t **list,
}
#endif
#endif /* __NETDEV_BASE_H_ */
#endif /* NETDEV_BASE_H_ */
/**
* @}
*/

View File

@ -17,8 +17,8 @@
* @author Martine Lenders <mlenders@inf.fu-berlin.de>
*/
#ifndef __NETDEV_DEFAULT_H_
#define __NETDEV_DEFAULT_H_
#ifndef NETDEV_DEFAULT_H_
#define NETDEV_DEFAULT_H_
#include "netdev/base.h"
@ -59,5 +59,5 @@ extern "C" {
}
#endif
#endif /* __NETDEV_DEFAULT_H_ */
#endif /* NETDEV_DEFAULT_H_ */
/** @} */