byteorder.h 279 B

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