bswapsi.c 282 B

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