summaryrefslogtreecommitdiffstats
path: root/arch/x86/include/asm/pda.h
diff options
context:
space:
mode:
authorTejun Heo2009-01-13 12:41:34 +0100
committerIngo Molnar2009-01-16 14:18:11 +0100
commit7de6883faad71e3a253d55b9e1a47b89ebce0a31 (patch)
tree9ff515dc966836a2b83812612cdd47f1bf8a83fa /arch/x86/include/asm/pda.h
parentMerge branches 'cpus4096', 'x86/cleanups' and 'x86/urgent' into x86/percpu (diff)
downloadkernel-qcow2-linux-7de6883faad71e3a253d55b9e1a47b89ebce0a31.tar.gz
kernel-qcow2-linux-7de6883faad71e3a253d55b9e1a47b89ebce0a31.tar.xz
kernel-qcow2-linux-7de6883faad71e3a253d55b9e1a47b89ebce0a31.zip
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>
Diffstat (limited to 'arch/x86/include/asm/pda.h')
-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 { \
case 8: \
asm(op "q %1,%%gs:%c2": \
"+m" (_proxy_pda.field) : \
- "ri" ((T__)val), \
+ "r" ((T__)val), \
"i"(pda_offset(field))); \
break; \
default: \