Browse Source

x86, bts: turn macro into static inline function

Impact: cleanup

Replace a macro with a static inline function.

Signed-off-by: Markus Metzger <markus.t.metzger@intel.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Markus Metzger 16 năm trước cách đây
mục cha
commit
e5e8ca633b
1 tập tin đã thay đổi với 4 bổ sung2 xóa
  1. 4 2
      arch/x86/include/asm/ds.h

+ 4 - 2
arch/x86/include/asm/ds.h

@@ -23,12 +23,13 @@
 #ifndef _ASM_X86_DS_H
 #ifndef _ASM_X86_DS_H
 #define _ASM_X86_DS_H
 #define _ASM_X86_DS_H
 
 
-#ifdef CONFIG_X86_DS
 
 
 #include <linux/types.h>
 #include <linux/types.h>
 #include <linux/init.h>
 #include <linux/init.h>
 
 
 
 
+#ifdef CONFIG_X86_DS
+
 struct task_struct;
 struct task_struct;
 
 
 /*
 /*
@@ -232,7 +233,8 @@ extern void ds_free(struct ds_context *context);
 
 
 #else /* CONFIG_X86_DS */
 #else /* CONFIG_X86_DS */
 
 
-#define ds_init_intel(config) do {} while (0)
+struct cpuinfo_x86;
+static inline void __cpuinit ds_init_intel(struct cpuinfo_x86 *ignored) {}
 
 
 #endif /* CONFIG_X86_DS */
 #endif /* CONFIG_X86_DS */
 #endif /* _ASM_X86_DS_H */
 #endif /* _ASM_X86_DS_H */