1 /* SPDX-License-Identifier: GPL-2.0 */
2 /******************************************************************************
3  *
4  * Copyright(c) 2007 - 2011 Realtek Corporation. All rights reserved.
5  *
6  ******************************************************************************/
7 #ifndef _RTL871X_BYTEORDER_H_
8 #define _RTL871X_BYTEORDER_H_
9 
10 #if defined (__LITTLE_ENDIAN)
11 #include <linux/byteorder/little_endian.h>
12 #else
13 #  include <linux/byteorder/big_endian.h>
14 #endif
15 
16 #endif /* _RTL871X_BYTEORDER_H_ */
17