byteorder.h 306 B

12345678910111213
  1. // SPDX-License-Identifier: GPL-2.0
  2. // Copyright (C) 2005-2017 Andes Technology Corporation
  3. #ifndef __NDS32_BYTEORDER_H__
  4. #define __NDS32_BYTEORDER_H__
  5. #ifdef __NDS32_EB__
  6. #include <linux/byteorder/big_endian.h>
  7. #else
  8. #include <linux/byteorder/little_endian.h>
  9. #endif
  10. #endif /* __NDS32_BYTEORDER_H__ */