Commit e6a3e9a3 authored by Linus Torvalds's avatar Linus Torvalds Committed by Linus Torvalds

Avoid using undefined preprocessor symbols: check CONFIG_MK7 with

"defined()" rather than using it as a value.
parent 0eec8ef1
...@@ -536,7 +536,7 @@ static inline void rep_nop(void) ...@@ -536,7 +536,7 @@ static inline void rep_nop(void)
#define ASM_NOP6 K8_NOP6 #define ASM_NOP6 K8_NOP6
#define ASM_NOP7 K8_NOP7 #define ASM_NOP7 K8_NOP7
#define ASM_NOP8 K8_NOP8 #define ASM_NOP8 K8_NOP8
#elif CONFIG_MK7 #elif defined(CONFIG_MK7)
#define ASM_NOP1 K7_NOP1 #define ASM_NOP1 K7_NOP1
#define ASM_NOP2 K7_NOP2 #define ASM_NOP2 K7_NOP2
#define ASM_NOP3 K7_NOP3 #define ASM_NOP3 K7_NOP3
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment