x86: fix asm-x86/byteorder.h for userspace export
Since asm-x86/byteorder.h is exported to userspace, use __asm__ rather than asm in its code. Signed-Off-By: Mike Frysinger <vapier@gentoo.org> Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
This commit is contained in:
committed by
Ingo Molnar
parent
e697789d64
commit
e0c4ae0649
@@ -30,13 +30,13 @@ static __inline__ __attribute_const__ __u64 ___arch__swab64(__u64 val)
|
|||||||
} v;
|
} v;
|
||||||
v.u = val;
|
v.u = val;
|
||||||
#ifdef CONFIG_X86_BSWAP
|
#ifdef CONFIG_X86_BSWAP
|
||||||
asm("bswapl %0 ; bswapl %1 ; xchgl %0,%1"
|
__asm__("bswapl %0 ; bswapl %1 ; xchgl %0,%1"
|
||||||
: "=r" (v.s.a), "=r" (v.s.b)
|
: "=r" (v.s.a), "=r" (v.s.b)
|
||||||
: "0" (v.s.a), "1" (v.s.b));
|
: "0" (v.s.a), "1" (v.s.b));
|
||||||
#else
|
#else
|
||||||
v.s.a = ___arch__swab32(v.s.a);
|
v.s.a = ___arch__swab32(v.s.a);
|
||||||
v.s.b = ___arch__swab32(v.s.b);
|
v.s.b = ___arch__swab32(v.s.b);
|
||||||
asm("xchgl %0,%1" : "=r" (v.s.a), "=r" (v.s.b) : "0" (v.s.a), "1" (v.s.b));
|
__asm__("xchgl %0,%1" : "=r" (v.s.a), "=r" (v.s.b) : "0" (v.s.a), "1" (v.s.b));
|
||||||
#endif
|
#endif
|
||||||
return v.u;
|
return v.u;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user