blob: 70b4c078af11385629909447d11fbe70c960cb8b [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Simon Glass744d9852011-10-10 08:22:14 +00002/*
3 * Copyright (c) 2011 The Chromium OS Authors.
Simon Glass744d9852011-10-10 08:22:14 +00004 */
5
6#ifndef __ASM_SANDBOX_BYTEORDER_H
7#define __ASM_SANDBOX_BYTEORDER_H
8
9
10#include <asm/types.h>
11
12#if !defined(__STRICT_ANSI__) || defined(__KERNEL__)
13# define __BYTEORDER_HAS_U64__
14# define __SWAB_64_THRU_32__
15#endif
16
17#ifdef CONFIG_SANDBOX_BIG_ENDIAN
18#include <linux/byteorder/big_endian.h>
19#else
20#include <linux/byteorder/little_endian.h>
21#endif
22
23#endif