mirror of
https://github.com/SCST-project/scst.git
synced 2026-05-17 02:31:27 +00:00
fcst: Include version number in module description
git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@4955 d57e44dd-8a1f-0410-8b47-8ef2f437770f
This commit is contained in:
@@ -21,10 +21,6 @@
|
||||
#include <scsi/libfc.h>
|
||||
#include "fcst.h"
|
||||
|
||||
MODULE_AUTHOR("Joe Eykholt <jeykholt@cisco.com>");
|
||||
MODULE_DESCRIPTION("Fibre-Channel SCST target");
|
||||
MODULE_LICENSE("GPL v2");
|
||||
|
||||
unsigned int ft_debug_logging;
|
||||
module_param_named(debug_logging, ft_debug_logging, int, S_IRUGO | S_IWUSR);
|
||||
MODULE_PARM_DESC(debug_logging, "log levels bigmask");
|
||||
@@ -74,7 +70,6 @@ static int __init ft_module_init(void)
|
||||
fc_lport_iterate(ft_lport_add, NULL);
|
||||
return 0;
|
||||
}
|
||||
module_init(ft_module_init);
|
||||
|
||||
static void __exit ft_module_exit(void)
|
||||
{
|
||||
@@ -85,4 +80,9 @@ static void __exit ft_module_exit(void)
|
||||
scst_unregister_target_template(&ft_scst_template);
|
||||
synchronize_rcu();
|
||||
}
|
||||
|
||||
MODULE_AUTHOR("Joe Eykholt <jeykholt@cisco.com>");
|
||||
MODULE_DESCRIPTION("SCST FCoE target driver v" FT_VERSION);
|
||||
MODULE_LICENSE("GPL v2");
|
||||
module_init(ft_module_init);
|
||||
module_exit(ft_module_exit);
|
||||
|
||||
Reference in New Issue
Block a user