From 9f0d2ccc2b7d6653296b468e67924a0defc1852a Mon Sep 17 00:00:00 2001
From: zhuoshuguo <shuguo.zhuo@inria.fr>
Date: Tue, 28 Jun 2016 20:37:57 +0200
Subject: [PATCH] fix cpu/x86 include header guard.

---
 cpu/x86/include/x86_pci_init.h | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/cpu/x86/include/x86_pci_init.h b/cpu/x86/include/x86_pci_init.h
index 71ce5af20e..8d2840c07b 100644
--- a/cpu/x86/include/x86_pci_init.h
+++ b/cpu/x86/include/x86_pci_init.h
@@ -16,8 +16,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
-#ifndef __X86__PCI_INIT__H
-#define __X86__PCI_INIT__H
+#ifndef X86_PCI_INIT_H
+#define X86_PCI_INIT_H
 
 #ifdef __cplusplus
 extern "C" {
@@ -31,4 +31,4 @@ void x86_init_pci_devices(void);
 }
 #endif
 
-#endif
+#endif /* X86_PCI_INIT_H */
-- 
GitLab