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

bcache: add MODULE_DESCRIPTION information

This patch moves MODULE_AUTHOR and MODULE_LICENSE to end of super.c, and
add MODULE_DESCRIPTION("Bcache: a Linux block layer cache").

This is preparation for adding module parameters.

Signed-off-by: Coly Li <colyli@suse.de>
Signed-off-by: Jens Axboe <axboe@kernel.dk>

authored by

Coly Li and committed by
Jens Axboe
009673d0 7a671d8e

+4 -3
+4 -3
drivers/md/bcache/super.c
··· 25 25 #include <linux/reboot.h> 26 26 #include <linux/sysfs.h> 27 27 28 - MODULE_LICENSE("GPL"); 29 - MODULE_AUTHOR("Kent Overstreet <kent.overstreet@gmail.com>"); 30 - 31 28 static const char bcache_magic[] = { 32 29 0xc6, 0x85, 0x73, 0xf6, 0x4e, 0x1a, 0x45, 0xca, 33 30 0x82, 0x65, 0xf5, 0x7f, 0x48, 0xba, 0x6d, 0x81 ··· 2466 2469 2467 2470 module_exit(bcache_exit); 2468 2471 module_init(bcache_init); 2472 + 2473 + MODULE_DESCRIPTION("Bcache: a Linux block layer cache"); 2474 + MODULE_AUTHOR("Kent Overstreet <kent.overstreet@gmail.com>"); 2475 + MODULE_LICENSE("GPL");