projects
/
kernel
/
kernel-generic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
edb16be
)
[PATCH] add MODULE_* attributes to bit reversal library
author
Cal Peake
<cp@absolutedigital.net>
Sun, 10 Dec 2006 11:22:05 +0000
(06:22 -0500)
committer
Linus Torvalds
<torvalds@woody.osdl.org>
Sun, 10 Dec 2006 18:07:52 +0000
(10:07 -0800)
Add MODULE_* attributes to the new bit reversal library. Most notably
MODULE_LICENSE which prevents superfluous kernel tainting.
Signed-off-by: Cal Peake <cp@absolutedigital.net>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
lib/bitrev.c
patch
|
blob
|
history
diff --git
a/lib/bitrev.c
b/lib/bitrev.c
index
f4e1c49
..
989aff7
100644
(file)
--- a/
lib/bitrev.c
+++ b/
lib/bitrev.c
@@
-2,6
+2,10
@@
#include <linux/module.h>
#include <linux/bitrev.h>
+MODULE_AUTHOR("Akinobu Mita <akinobu.mita@gmail.com>");
+MODULE_DESCRIPTION("Bit ordering reversal functions");
+MODULE_LICENSE("GPL");
+
const u8 byte_rev_table[256] = {
0x00, 0x80, 0x40, 0xc0, 0x20, 0xa0, 0x60, 0xe0,
0x10, 0x90, 0x50, 0xd0, 0x30, 0xb0, 0x70, 0xf0,