mirror of
https://gitee.com/bianbu-linux/linux-6.6
synced 2025-07-20 01:33:37 -04:00
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
12 lines
238 B
C
12 lines
238 B
C
#ifndef __ASM_SH_BYTEORDER_H
|
|
#define __ASM_SH_BYTEORDER_H
|
|
|
|
#include <asm/swab.h>
|
|
|
|
#ifdef __LITTLE_ENDIAN__
|
|
#include <linux/byteorder/little_endian.h>
|
|
#else
|
|
#include <linux/byteorder/big_endian.h>
|
|
#endif
|
|
|
|
#endif /* __ASM_SH_BYTEORDER_H */
|