aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTejun Heo <tj@kernel.org>2009-01-13 06:41:34 -0500
committerIngo Molnar <mingo@elte.hu>2009-01-16 08:18:11 -0500
commit7de6883faad71e3a253d55b9e1a47b89ebce0a31 (patch)
tree9ff515dc966836a2b83812612cdd47f1bf8a83fa
parent7f268f4352cd7d3d18a20268887600aaebd9d974 (diff)
x86: fix pda_to_op()
There's no instruction to move a 64bit immediate into memory location. Drop "i". Signed-off-by: Tejun Heo <tj@kernel.org> Signed-off-by: Ingo Molnar <mingo@elte.hu>
-rw-r--r--arch/x86/include/asm/pda.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/include/asm/pda.h b/arch/x86/include/asm/pda.h
index 2fbfff88df37..cbd3f48a8320 100644
--- a/arch/x86/include/asm/pda.h
+++ b/arch/x86/include/asm/pda.h
@@ -78,7 +78,7 @@ do { \
78 case 8: \ 78 case 8: \
79 asm(op "q %1,%%gs:%c2": \ 79 asm(op "q %1,%%gs:%c2": \
80 "+m" (_proxy_pda.field) : \ 80 "+m" (_proxy_pda.field) : \
81 "ri" ((T__)val), \ 81 "r" ((T__)val), \
82 "i"(pda_offset(field))); \ 82 "i"(pda_offset(field))); \
83 break; \ 83 break; \
84 default: \ 84 default: \