powerpc: Fix VSX macros so register names aren't wrapped
authorMichael Neuling <mikey@neuling.org>
Mon, 25 Jun 2012 13:33:19 +0000 (13:33 +0000)
committerBenjamin Herrenschmidt <benh@kernel.crashing.org>
Tue, 10 Jul 2012 09:18:19 +0000 (19:18 +1000)
We need to do this so we can enforce the name of a and b in called
macros PPC_RA/B later.

Signed-off-by: Michael Neuling <mikey@neuling.org>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
arch/powerpc/include/asm/ppc-opcode.h

index 73eecd1..2671a6d 100644 (file)
 #define VSX_XX1(s, a, b)       (__PPC_XS(s) | __PPC_RA(a) | __PPC_RB(b))
 #define VSX_XX3(t, a, b)       (__PPC_XT(t) | __PPC_XA(a) | __PPC_XB(b))
 #define STXVD2X(s, a, b)       stringify_in_c(.long PPC_INST_STXVD2X | \
-                                              VSX_XX1((s), (a), (b)))
+                                              VSX_XX1((s), a, b))
 #define LXVD2X(s, a, b)                stringify_in_c(.long PPC_INST_LXVD2X | \
-                                              VSX_XX1((s), (a), (b)))
+                                              VSX_XX1((s), a, b))
 #define XXLOR(t, a, b)         stringify_in_c(.long PPC_INST_XXLOR | \
-                                              VSX_XX3((t), (a), (b)))
+                                              VSX_XX3((t), a, b))
 
 #define PPC_NAP                        stringify_in_c(.long PPC_INST_NAP)
 #define PPC_SLEEP              stringify_in_c(.long PPC_INST_SLEEP)