Commit 7d1c8951 authored by Marcel Holtmann's avatar Marcel Holtmann

[PATCH] Module description cleanup

This patch modifies the module description and make it common with the
rest of the Bluetooth subsystem.
parent f23480d1
...@@ -702,16 +702,14 @@ int bnep_get_coninfo(struct bnep_coninfo *ci) ...@@ -702,16 +702,14 @@ int bnep_get_coninfo(struct bnep_coninfo *ci)
static int __init bnep_init_module(void) static int __init bnep_init_module(void)
{ {
BT_INFO("BNEP: BNEP2 ver %s\n"
"BNEP: Copyright (C) 2002 Inventel\n"
"BNEP: Written 2001,2002 by\n"
"BNEP: \tClement Moreau <clement.moreau@inventel.fr> "
"David Libault <david.libault@inventel.fr>\n"
"BNEP: Copyright (C) 2002 Maxim Krasnyanskiy <maxk@qualcomm.com>",
VERSION);
bnep_sock_init(); bnep_sock_init();
BT_INFO("Bluetooth BNEP ver %s", VERSION);
BT_INFO("Copyright (C) 2001,2002 Inventel Systemes");
BT_INFO("Written 2001,2002 by Clement Moreau <clement.moreau@inventel.fr>");
BT_INFO("Written 2001,2002 by David Libault <david.libault@inventel.fr>");
BT_INFO("Copyright (C) 2002 Maxim Krasnyanskiy <maxk@qualcomm.com>");
return 0; return 0;
} }
...@@ -723,6 +721,6 @@ static void __exit bnep_cleanup_module(void) ...@@ -723,6 +721,6 @@ static void __exit bnep_cleanup_module(void)
module_init(bnep_init_module); module_init(bnep_init_module);
module_exit(bnep_cleanup_module); module_exit(bnep_cleanup_module);
MODULE_DESCRIPTION("BNEP ver " VERSION); MODULE_DESCRIPTION("Bluetooth BNEP ver " VERSION);
MODULE_AUTHOR("David Libault <david.libault@inventel.fr> Maxim Krasnyanskiy <maxk@qualcomm.com>"); MODULE_AUTHOR("David Libault <david.libault@inventel.fr>, Maxim Krasnyanskiy <maxk@qualcomm.com>");
MODULE_LICENSE("GPL"); MODULE_LICENSE("GPL");
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment