Loading...
Note: File does not exist in v3.1.
1#include <linux/export.h>
2#include <linux/compiler.h>
3
4unsigned 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
12EXPORT_SYMBOL(__bswapsi2);