From 0258736a0a2cde8ab30725b601aeca4cf8bc93ab Mon Sep 17 00:00:00 2001 From: Cal Peake Date: Sun, 10 Dec 2006 06:22:05 -0500 Subject: [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 Signed-off-by: Linus Torvalds --- lib/bitrev.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'lib/bitrev.c') 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 @@ #include #include +MODULE_AUTHOR("Akinobu Mita "); +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, -- cgit v1.2.3