18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ 28c2ecf20Sopenharmony_ci/* 38c2ecf20Sopenharmony_ci * This file is subject to the terms and conditions of the GNU General Public 48c2ecf20Sopenharmony_ci * License. See the file "COPYING" in the main directory of this archive 58c2ecf20Sopenharmony_ci * for more details. 68c2ecf20Sopenharmony_ci * 78c2ecf20Sopenharmony_ci * Copyright (C) 1996, 99, 2003 by Ralf Baechle 88c2ecf20Sopenharmony_ci */ 98c2ecf20Sopenharmony_ci#ifndef _ASM_BYTEORDER_H 108c2ecf20Sopenharmony_ci#define _ASM_BYTEORDER_H 118c2ecf20Sopenharmony_ci 128c2ecf20Sopenharmony_ci#if defined(__MIPSEB__) 138c2ecf20Sopenharmony_ci#include <linux/byteorder/big_endian.h> 148c2ecf20Sopenharmony_ci#elif defined(__MIPSEL__) 158c2ecf20Sopenharmony_ci#include <linux/byteorder/little_endian.h> 168c2ecf20Sopenharmony_ci#else 178c2ecf20Sopenharmony_ci# error "MIPS, but neither __MIPSEB__, nor __MIPSEL__???" 188c2ecf20Sopenharmony_ci#endif 198c2ecf20Sopenharmony_ci 208c2ecf20Sopenharmony_ci#endif /* _ASM_BYTEORDER_H */ 21