Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v4.4 11 lines 246 B view raw
1#include <linux/module.h> 2 3unsigned int __bswapsi2(unsigned int u) 4{ 5 return (((u) & 0xff000000) >> 24) | 6 (((u) & 0x00ff0000) >> 8) | 7 (((u) & 0x0000ff00) << 8) | 8 (((u) & 0x000000ff) << 24); 9} 10 11EXPORT_SYMBOL(__bswapsi2);