~pmdj/ubuntu/trusty/qemu/2.9+applesmc+fadtv3

« back to all changes in this revision

Viewing changes to roms/u-boot/arch/arm/include/asm/unaligned.h

  • Committer: Phil Dennis-Jordan
  • Date: 2017-07-21 08:03:43 UTC
  • mfrom: (1.1.1)
  • Revision ID: phil@philjordan.eu-20170721080343-2yr2vdj7713czahv
New upstream release 2.9.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef _ASM_ARM_UNALIGNED_H
 
2
#define _ASM_ARM_UNALIGNED_H
 
3
 
 
4
#include <linux/unaligned/le_byteshift.h>
 
5
#include <linux/unaligned/be_byteshift.h>
 
6
#include <linux/unaligned/generic.h>
 
7
 
 
8
/*
 
9
 * Select endianness
 
10
 */
 
11
#if __BYTE_ORDER == __LITTLE_ENDIAN
 
12
#define get_unaligned   __get_unaligned_le
 
13
#define put_unaligned   __put_unaligned_le
 
14
#else
 
15
#define get_unaligned   __get_unaligned_be
 
16
#define put_unaligned   __put_unaligned_be
 
17
#endif
 
18
 
 
19
#endif /* _ASM_ARM_UNALIGNED_H */