[git commit master 1/1] nios2: Correct guard #defines in bits/kernel_types.h

Khem Raj raj.khem at gmail.com
Wed Mar 9 06:48:41 UTC 2011


commit: http://git.uclibc.org/uClibc/commit/?id=eb9cca27b385873c6788b18a13d918c873540866
branch: http://git.uclibc.org/uClibc/commit/?id=refs/heads/master

The guards in posix_types.h are called _ASM_NIOS2_POSIX_TYPES_H, so
correctly use them here. Otherwise we wont be able to build uClibc
with headers exported from the current nios2 kernel.

Signed-off-by: Tobias Klauser <tklauser at distanz.ch>
Signed-off-by: Khem Raj <raj.khem at gmail.com>
---
 libc/sysdeps/linux/nios2/bits/kernel_types.h |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/libc/sysdeps/linux/nios2/bits/kernel_types.h b/libc/sysdeps/linux/nios2/bits/kernel_types.h
index 3fcd1af..8b86d79 100644
--- a/libc/sysdeps/linux/nios2/bits/kernel_types.h
+++ b/libc/sysdeps/linux/nios2/bits/kernel_types.h
@@ -4,8 +4,8 @@
  * our private content, and not the kernel header, will win.
  *  -Erik
  */
-#ifndef __ARCH_NIOS2_POSIX_TYPES_H
-#define __ARCH_NIOS2_POSIX_TYPES_H
+#ifndef _ASM_NIOS2_POSIX_TYPES_H
+#define _ASM_NIOS2_POSIX_TYPES_H
 
 typedef unsigned long	__kernel_dev_t;
 typedef unsigned long	__kernel_ino_t;
@@ -41,4 +41,4 @@ typedef struct {
 #endif
 } __kernel_fsid_t;
 
-#endif /* __ARCH_NIOS2_POSIX_TYPES_H */
+#endif /* _ASM_NIOS2_POSIX_TYPES_H */
-- 
1.7.3.4



More information about the uClibc-cvs mailing list