byteorder.h 275 B

123456789101112131415
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. #ifndef __ASM_SH_BYTEORDER_H_
  3. #define __ASM_SH_BYTEORDER_H_
  4. #include <config.h>
  5. #include <asm/types.h>
  6. #ifdef __LITTLE_ENDIAN__
  7. #include <linux/byteorder/little_endian.h>
  8. #else
  9. #include <linux/byteorder/big_endian.h>
  10. #endif
  11. #endif