aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/x86/kernel/ds.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/ds.c b/arch/x86/kernel/ds.c
index f0583005b75e..dc1e7123ea4e 100644
--- a/arch/x86/kernel/ds.c
+++ b/arch/x86/kernel/ds.c
@@ -232,7 +232,7 @@ static DEFINE_PER_CPU(struct ds_context *, system_context_array);
232 232
233#define system_context per_cpu(system_context_array, smp_processor_id()) 233#define system_context per_cpu(system_context_array, smp_processor_id())
234 234
235static inline struct ds_context *ds_get_context(struct task_struct *task) 235static struct ds_context *ds_get_context(struct task_struct *task)
236{ 236{
237 struct ds_context **p_context = 237 struct ds_context **p_context =
238 (task ? &task->thread.ds_ctx : &system_context); 238 (task ? &task->thread.ds_ctx : &system_context);