blob: 9579051ff1c7b9b66924c99e35490dcd925104e8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
5 *
6 * Copyright (C) 1996, 99, 2003 by Ralf Baechle
7 */
8#ifndef _ASM_BYTEORDER_H
9#define _ASM_BYTEORDER_H
10
Harvey Harrison255a12f2008-10-29 14:21:32 -070011#if defined(__MIPSEB__)
Harvey Harrison8cdd3a92009-01-06 14:56:23 -080012#include <linux/byteorder/big_endian.h>
Harvey Harrison255a12f2008-10-29 14:21:32 -070013#elif defined(__MIPSEL__)
Harvey Harrison8cdd3a92009-01-06 14:56:23 -080014#include <linux/byteorder/little_endian.h>
Harvey Harrison255a12f2008-10-29 14:21:32 -070015#else
16# error "MIPS, but neither __MIPSEB__, nor __MIPSEL__???"
17#endif
18
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#endif /* _ASM_BYTEORDER_H */