Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
0002 /*
0003  * This file is subject to the terms and conditions of the GNU General Public
0004  * License.  See the file "COPYING" in the main directory of this archive
0005  * for more details.
0006  *
0007  * Copyright (C) 1996, 99, 2003 by Ralf Baechle
0008  */
0009 #ifndef _ASM_BYTEORDER_H
0010 #define _ASM_BYTEORDER_H
0011 
0012 #if defined(__MIPSEB__)
0013 #include <linux/byteorder/big_endian.h>
0014 #elif defined(__MIPSEL__)
0015 #include <linux/byteorder/little_endian.h>
0016 #else
0017 # error "MIPS, but neither __MIPSEB__, nor __MIPSEL__???"
0018 #endif
0019 
0020 #endif /* _ASM_BYTEORDER_H */