From: Jan Beulich Date: Mon, 30 Nov 2015 10:55:49 +0000 (+0100) Subject: x86: drop dummy input from alternative_{input,io}() X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~2160 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=0b2e4b844826588924ef7581b475f0a5b6b11bcd;p=xen.git x86: drop dummy input from alternative_{input,io}() We don't need the claimed API compatibility. No change in generated code. Signed-off-by: Jan Beulich Reviewed-by: Andrew Cooper --- diff --git a/xen/include/asm-x86/alternative.h b/xen/include/asm-x86/alternative.h index 7ddbd76b47..7d1135437e 100644 --- a/xen/include/asm-x86/alternative.h +++ b/xen/include/asm-x86/alternative.h @@ -83,16 +83,15 @@ extern void alternative_instructions(void); * Best is to use constraints that are fixed size (like (%1) ... "r") * If you use variable sized constraints like "m" or "g" in the * replacement make sure to pad to the worst case length. - * Leaving an unused argument 0 to keep API compatibility. */ #define alternative_input(oldinstr, newinstr, feature, input...) \ asm volatile (ALTERNATIVE(oldinstr, newinstr, feature) \ - : : "i" (0), ## input) + : : input) /* Like alternative_input, but with a single output argument */ #define alternative_io(oldinstr, newinstr, feature, output, input...) \ asm volatile (ALTERNATIVE(oldinstr, newinstr, feature) \ - : output : "i" (0), ## input) + : output : input) /* Use this macro(s) if you need more than one output parameter. */ #define ASM_OUTPUT2(a...) a