aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-x86
diff options
context:
space:
mode:
authorSuresh Siddha <suresh.b.siddha@intel.com>2008-04-16 04:27:53 -0400
committerIngo Molnar <mingo@elte.hu>2008-04-19 13:19:55 -0400
commit1679f2710ac58df580d3716fab1f42ae50a226eb (patch)
treeb7ac7e16814d0039a963ab2ee35d7850e9e347a1 /include/asm-x86
parentaa283f49276e7d840a40fb01eee6de97eaa7e012 (diff)
x86: fpu xstate split cleanup
Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'include/asm-x86')
-rw-r--r--include/asm-x86/i387.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/asm-x86/i387.h b/include/asm-x86/i387.h
index 4be7b58b1e16..da2adb45f6e3 100644
--- a/include/asm-x86/i387.h
+++ b/include/asm-x86/i387.h
@@ -328,7 +328,7 @@ static inline unsigned short get_fpu_cwd(struct task_struct *tsk)
328 if (cpu_has_fxsr) { 328 if (cpu_has_fxsr) {
329 return tsk->thread.xstate->fxsave.cwd; 329 return tsk->thread.xstate->fxsave.cwd;
330 } else { 330 } else {
331 return (unsigned short) tsk->thread.xstate->fsave.cwd; 331 return (unsigned short)tsk->thread.xstate->fsave.cwd;
332 } 332 }
333} 333}
334 334
@@ -337,7 +337,7 @@ static inline unsigned short get_fpu_swd(struct task_struct *tsk)
337 if (cpu_has_fxsr) { 337 if (cpu_has_fxsr) {
338 return tsk->thread.xstate->fxsave.swd; 338 return tsk->thread.xstate->fxsave.swd;
339 } else { 339 } else {
340 return (unsigned short) tsk->thread.xstate->fsave.swd; 340 return (unsigned short)tsk->thread.xstate->fsave.swd;
341 } 341 }
342} 342}
343 343