summaryrefslogtreecommitdiff
path: root/arch/powerpc/net/bpf_jit_64.S
diff options
context:
space:
mode:
Diffstat (limited to 'arch/powerpc/net/bpf_jit_64.S')
-rw-r--r--arch/powerpc/net/bpf_jit_64.S9
1 files changed, 1 insertions, 8 deletions
diff --git a/arch/powerpc/net/bpf_jit_64.S b/arch/powerpc/net/bpf_jit_64.S
index e76eba7..7d3a3b5 100644
--- a/arch/powerpc/net/bpf_jit_64.S
+++ b/arch/powerpc/net/bpf_jit_64.S
@@ -43,11 +43,8 @@ sk_load_word_positive_offset:
cmpd r_scratch1, r_addr
blt bpf_slow_path_word
/* Nope, just hitting the header. cr0 here is eq or gt! */
-#ifdef __LITTLE_ENDIAN__
- lwbrx r_A, r_D, r_addr
-#else
lwzx r_A, r_D, r_addr
-#endif
+ /* When big endian we don't need to byteswap. */
blr /* Return success, cr0 != LT */
.globl sk_load_half
@@ -59,11 +56,7 @@ sk_load_half_positive_offset:
subi r_scratch1, r_HL, 2
cmpd r_scratch1, r_addr
blt bpf_slow_path_half
-#ifdef __LITTLE_ENDIAN__
- lhbrx r_A, r_D, r_addr
-#else
lhzx r_A, r_D, r_addr
-#endif
blr
.globl sk_load_byte