powerpc/asm: Convert .llong directives to .8byte
.llong is an undocumented PPC specific directive. The generic equivalent is .quad, but even better (because it's self describing) is .8byte. Convert all .llong directives to .8byte. Signed-off-by: Tobin C. Harding <me@tobin.cc> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
This commit is contained in:

committed by
Michael Ellerman

parent
5b593949f8
commit
eb039161da
@@ -19,11 +19,11 @@
|
||||
*/
|
||||
#if defined(CONFIG_PPC64) && !defined(__powerpc64__)
|
||||
/* 64 bits kernel, 32 bits code (ie. vdso32) */
|
||||
#define FTR_ENTRY_LONG .llong
|
||||
#define FTR_ENTRY_LONG .8byte
|
||||
#define FTR_ENTRY_OFFSET .long 0xffffffff; .long
|
||||
#elif defined(CONFIG_PPC64)
|
||||
#define FTR_ENTRY_LONG .llong
|
||||
#define FTR_ENTRY_OFFSET .llong
|
||||
#define FTR_ENTRY_LONG .8byte
|
||||
#define FTR_ENTRY_OFFSET .8byte
|
||||
#else
|
||||
#define FTR_ENTRY_LONG .long
|
||||
#define FTR_ENTRY_OFFSET .long
|
||||
|
Reference in New Issue
Block a user