diff options
author | jdl@freescale.com <jdl@freescale.com> | 2005-09-07 20:27:09 (GMT) |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2005-09-09 12:11:34 (GMT) |
commit | a37c8875a764b4decf941859f4a2c63e1e86c8fa (patch) | |
tree | 23a8ff93ac0c52c5f7f8db597caf848747a81eff /include/asm-powerpc/namei.h | |
parent | 38c0ff06d5ba05b6fbf18652c49747ad320aaeb0 (diff) | |
download | linux-a37c8875a764b4decf941859f4a2c63e1e86c8fa.tar.xz |
[PATCH] powerpc: Standardize on _ASM_POWERPC header symbol prefix
Standardize on _ASM_POWERPC_... prefix for all #include
exclusion symbols. Fixup all the non-compilers.
Signed-off-by: Jon Loeliger <jdl@freescale.com>
Signed-off-by: Kumar Gala <kumar.gala@freescale.com>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'include/asm-powerpc/namei.h')
-rw-r--r-- | include/asm-powerpc/namei.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/include/asm-powerpc/namei.h b/include/asm-powerpc/namei.h index 29c9ec8..6574434 100644 --- a/include/asm-powerpc/namei.h +++ b/include/asm-powerpc/namei.h @@ -1,14 +1,14 @@ +#ifndef _ASM_POWERPC_NAMEI_H +#define _ASM_POWERPC_NAMEI_H + +#ifdef __KERNEL__ + /* - * include/asm-ppc/namei.h * Adapted from include/asm-alpha/namei.h * * Included from fs/namei.c */ -#ifdef __KERNEL__ -#ifndef __PPC_NAMEI_H -#define __PPC_NAMEI_H - /* This dummy routine maybe changed to something useful * for /usr/gnemul/ emulation stuff. * Look at asm-sparc/namei.h for details. @@ -16,5 +16,5 @@ #define __emul_prefix() NULL -#endif /* __PPC_NAMEI_H */ -#endif /* __KERNEL__ */ +#endif /* __KERNEL__ */ +#endif /* _ASM_POWERPC_NAMEI_H */ |