diff options
author | Cal Peake <cp@absolutedigital.net> | 2006-12-10 06:22:05 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.osdl.org> | 2006-12-10 13:07:52 -0500 |
commit | 0258736a0a2cde8ab30725b601aeca4cf8bc93ab (patch) | |
tree | 1d09118c76b838b2881e619ab0bf0392291be303 | |
parent | edb16bec41db68b22799a5fbad82c3891e637565 (diff) |
[PATCH] add MODULE_* attributes to bit reversal library
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>
-rw-r--r-- | lib/bitrev.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/bitrev.c b/lib/bitrev.c index f4e1c49c825a..989aff73f881 100644 --- a/lib/bitrev.c +++ b/lib/bitrev.c | |||
@@ -2,6 +2,10 @@ | |||
2 | #include <linux/module.h> | 2 | #include <linux/module.h> |
3 | #include <linux/bitrev.h> | 3 | #include <linux/bitrev.h> |
4 | 4 | ||
5 | MODULE_AUTHOR("Akinobu Mita <akinobu.mita@gmail.com>"); | ||
6 | MODULE_DESCRIPTION("Bit ordering reversal functions"); | ||
7 | MODULE_LICENSE("GPL"); | ||
8 | |||
5 | const u8 byte_rev_table[256] = { | 9 | const u8 byte_rev_table[256] = { |
6 | 0x00, 0x80, 0x40, 0xc0, 0x20, 0xa0, 0x60, 0xe0, | 10 | 0x00, 0x80, 0x40, 0xc0, 0x20, 0xa0, 0x60, 0xe0, |
7 | 0x10, 0x90, 0x50, 0xd0, 0x30, 0xb0, 0x70, 0xf0, | 11 | 0x10, 0x90, 0x50, 0xd0, 0x30, 0xb0, 0x70, 0xf0, |