bswapsi.c 318 B

12345678910111213
  1. // SPDX-License-Identifier: GPL-2.0
  2. #include <linux/export.h>
  3. #include <linux/compiler.h>
  4. unsigned int notrace __bswapsi2(unsigned int u)
  5. {
  6. return (((u) & 0xff000000) >> 24) |
  7. (((u) & 0x00ff0000) >> 8) |
  8. (((u) & 0x0000ff00) << 8) |
  9. (((u) & 0x000000ff) << 24);
  10. }
  11. EXPORT_SYMBOL(__bswapsi2);