]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
powerpc/64s: Move the two FAST_ENDIAN macros next to each other
authorMichael Ellerman <mpe@ellerman.id.au>
Mon, 9 Oct 2017 10:54:04 +0000 (21:54 +1100)
committerMichael Ellerman <mpe@ellerman.id.au>
Sun, 22 Oct 2017 10:08:31 +0000 (12:08 +0200)
So we can #ifdef them in the next patch.

Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
arch/powerpc/kernel/exceptions-64s.S

index ce04b1c2ac8eeeeecbdfc5e5542d19d535757ce0..acddfe79395d36ed9015998a5a6668b14001ae0b 100644 (file)
@@ -865,12 +865,6 @@ EXC_COMMON(trap_0b_common, 0xb00, unknown_exception)
 #define LOAD_SYSCALL_HANDLER(reg)                                      \
        __LOAD_HANDLER(reg, system_call_common)
 
-#define SYSCALL_FASTENDIAN_TEST                                        \
-BEGIN_FTR_SECTION                                              \
-       cmpdi   r0,0x1ebe ;                                     \
-       beq-    1f ;                                            \
-END_FTR_SECTION_IFSET(CPU_FTR_REAL_LE)                         \
-
 /*
  * After SYSCALL_KVMTEST, we reach here with PACA in r13, r13 in r9,
  * and HMT_MEDIUM.
@@ -885,6 +879,12 @@ END_FTR_SECTION_IFSET(CPU_FTR_REAL_LE)                             \
        rfid ;                                                  \
        b       . ;     /* prevent speculative execution */
 
+#define SYSCALL_FASTENDIAN_TEST                                        \
+BEGIN_FTR_SECTION                                              \
+       cmpdi   r0,0x1ebe ;                                     \
+       beq-    1f ;                                            \
+END_FTR_SECTION_IFSET(CPU_FTR_REAL_LE)                         \
+
 #define SYSCALL_FASTENDIAN                                     \
        /* Fast LE/BE switch system call */                     \
 1:     mfspr   r12,SPRN_SRR1 ;                                 \