From: Cal Peake Date: Sun, 10 Dec 2006 11:22:05 +0000 (-0500) Subject: [PATCH] add MODULE_* attributes to bit reversal library X-Git-Tag: v2.6.20-rc1~15^2~36 X-Git-Url: http://git.cascardo.info/?a=commitdiff_plain;h=0258736a0a2cde8ab30725b601aeca4cf8bc93ab;p=cascardo%2Flinux.git [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 --- 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,