From: Tejun Heo Date: Tue, 13 Jan 2009 11:41:34 +0000 (+0900) Subject: x86: fix pda_to_op() X-Git-Tag: v3.12-rc1~14389^2~247^2~85 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7de6883faad71e3a253d55b9e1a47b89ebce0a31;p=kernel%2Fkernel-generic.git x86: fix pda_to_op() There's no instruction to move a 64bit immediate into memory location. Drop "i". Signed-off-by: Tejun Heo Signed-off-by: Ingo Molnar --- diff --git a/arch/x86/include/asm/pda.h b/arch/x86/include/asm/pda.h index 2fbfff8..cbd3f48 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: \