Skip to content
Snippets Groups Projects
Commit 16202075 authored by Peter Kietzmann's avatar Peter Kietzmann
Browse files

Merge pull request #4380 from haukepetersen/fix_driver_includeguards

drivers/pcd8544: fixed include guard
parents 5febed40 81ed8205
No related branches found
No related tags found
No related merge requests found
...@@ -19,8 +19,8 @@ ...@@ -19,8 +19,8 @@
* @author Hauke Petersen <hauke.petersen@fu-berlin.de> * @author Hauke Petersen <hauke.petersen@fu-berlin.de>
*/ */
#ifndef __PDC8544_H #ifndef PDC8544_H
#define __PDC8544_H #define PDC8544_H
#include <stdint.h> #include <stdint.h>
...@@ -198,5 +198,5 @@ void pcd8544_riot(pcd8544_t *dev); ...@@ -198,5 +198,5 @@ void pcd8544_riot(pcd8544_t *dev);
} }
#endif #endif
#endif /* __PDC8544_H */ #endif /* PDC8544_H */
/** @} */ /** @} */
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment