8903709b05
Fixes compile breakage as linux/byteorder.h was removed. Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
15 lines
300 B
C
15 lines
300 B
C
#ifndef _XTENSA_BYTEORDER_H
|
|
#define _XTENSA_BYTEORDER_H
|
|
|
|
#include <asm/swab.h>
|
|
|
|
#ifdef __XTENSA_EL__
|
|
#include <linux/byteorder/little_endian.h>
|
|
#elif defined(__XTENSA_EB__)
|
|
#include <linux/byteorder/big_endian.h>
|
|
#else
|
|
# error processor byte order undefined!
|
|
#endif
|
|
|
|
#endif /* _XTENSA_BYTEORDER_H */
|