blob: 593ba5a4cf004c251f6f632bc324c9a19602d4f1 [file] [log] [blame]
Wolfgang Denk97caf672006-03-12 02:12:27 +01001/*
Bin Meng75574052016-02-05 19:30:11 -08002 * U-Boot - byteorder.h
Wolfgang Denk97caf672006-03-12 02:12:27 +01003 *
Aubrey Li314d22f2007-04-05 18:31:18 +08004 * Copyright (c) 2005-2007 Analog Devices Inc.
Wolfgang Denk97caf672006-03-12 02:12:27 +01005 *
6 * (C) Copyright 2000-2004
7 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
8 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02009 * SPDX-License-Identifier: GPL-2.0+
Wolfgang Denk97caf672006-03-12 02:12:27 +010010 */
11
12#ifndef _BLACKFIN_BYTEORDER_H
13#define _BLACKFIN_BYTEORDER_H
14
15#include <asm/types.h>
16
17#if defined(__GNUC__) && !defined(__STRICT_ANSI__) || defined(__KERNEL__)
18# define __BYTEORDER_HAS_U64__
19# define __SWAB_64_THRU_32__
20#endif
21
22#include <linux/byteorder/little_endian.h>
23
24#endif