bswapdi.c 302 B

123456789101112
  1. // SPDX-License-Identifier: GPL-2.0
  2. // Copyright (C) 2018 Hangzhou C-SKY Microsystems co.,ltd.
  3. #include <linux/export.h>
  4. #include <linux/compiler.h>
  5. #include <uapi/linux/swab.h>
  6. unsigned long long notrace __bswapdi2(unsigned long long u)
  7. {
  8. return ___constant_swab64(u);
  9. }
  10. EXPORT_SYMBOL(__bswapdi2);