diff options
author | H. Peter Anvin <hpa@linux.intel.com> | 2014-05-02 11:33:51 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@linux.intel.com> | 2014-05-02 11:34:17 -0700 |
commit | 20b68535cd27183ebd3651ff313afb2b97dac941 (patch) | |
tree | b5f5c6a3644757666fb2065769986d71c7b4d492 | |
parent | e1fe9ed8d2a4937510d0d60e20705035c2609aea (diff) | |
download | op-kernel-dev-20b68535cd27183ebd3651ff313afb2b97dac941.zip op-kernel-dev-20b68535cd27183ebd3651ff313afb2b97dac941.tar.gz |
x86, espfix: Fix broken header guard
Header guard is #ifndef, not #ifdef...
Reported-by: Fengguang Wu <fengguang.wu@intel.com>
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
-rw-r--r-- | arch/x86/include/asm/espfix.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/include/asm/espfix.h b/arch/x86/include/asm/espfix.h index 729051c..99efebb 100644 --- a/arch/x86/include/asm/espfix.h +++ b/arch/x86/include/asm/espfix.h @@ -1,4 +1,4 @@ -#ifdef _ASM_X86_ESPFIX_H +#ifndef _ASM_X86_ESPFIX_H #define _ASM_X86_ESPFIX_H #ifdef CONFIG_X86_64 |