diff options
author | Markus Metzger <markus.t.metzger@intel.com> | 2008-11-25 07:47:19 (GMT) |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-11-25 16:28:51 (GMT) |
commit | e5e8ca633bbe972eff6f84e064a63c0c08ed6c3d (patch) | |
tree | 8e0cd2f37a87ada15b87983f33b84c95e383956e /arch | |
parent | 292c669cd7087a090d6420e223eb1072f3e3c50b (diff) | |
download | linux-fsl-qoriq-e5e8ca633bbe972eff6f84e064a63c0c08ed6c3d.tar.xz |
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>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/include/asm/ds.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/arch/x86/include/asm/ds.h b/arch/x86/include/asm/ds.h index 72c5a19..a950084 100644 --- a/arch/x86/include/asm/ds.h +++ b/arch/x86/include/asm/ds.h @@ -23,12 +23,13 @@ #ifndef _ASM_X86_DS_H #define _ASM_X86_DS_H -#ifdef CONFIG_X86_DS #include <linux/types.h> #include <linux/init.h> +#ifdef CONFIG_X86_DS + struct task_struct; /* @@ -232,7 +233,8 @@ extern void ds_free(struct ds_context *context); #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 /* _ASM_X86_DS_H */ |