aboutsummaryrefslogtreecommitdiff
path: root/arch/cris/include/asm/byteorder.h
blob: cc8e418cfd14a10c65fc1dc8a3f41c78178db713 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#ifndef _CRIS_BYTEORDER_H
#define _CRIS_BYTEORDER_H

#ifdef __GNUC__

#ifdef __KERNEL__
#include <arch/byteorder.h>

/* defines are necessary because the other files detect the presence
 * of a defined __arch_swab32, not an inline
 */
#define __arch__swab32(x) ___arch__swab32(x)
#define __arch__swab16(x) ___arch__swab16(x)
#endif /* __KERNEL__ */

#if !defined(__STRICT_ANSI__) || defined(__KERNEL__)
#  define __BYTEORDER_HAS_U64__
#  define __SWAB_64_THRU_32__
#endif

#endif /* __GNUC__ */

#include <linux/byteorder/little_endian.h>

#endif