summaryrefslogtreecommitdiff
path: root/drivers/staging/usbip/usbip_common.c
diff options
context:
space:
mode:
authormatt mooney <mfm@muteddisk.com>2011-05-06 03:47:56 -0700
committerGreg Kroah-Hartman <gregkh@suse.de>2011-05-06 14:26:16 -0700
commit4ce0a41f1054b58801f7e14f5036cf27a75152e2 (patch)
treedbc7eb6dc45bcacb32acc790f812b8a82d5738c7 /drivers/staging/usbip/usbip_common.c
parent6a298401fcdefdbff734b137c1b67df9d5849103 (diff)
downloadlinux-3.10-4ce0a41f1054b58801f7e14f5036cf27a75152e2.tar.gz
linux-3.10-4ce0a41f1054b58801f7e14f5036cf27a75152e2.tar.bz2
linux-3.10-4ce0a41f1054b58801f7e14f5036cf27a75152e2.zip
staging: usbip: fixup MODULE_ macros
Modify description and email address for usbip_common_mod; export module version number; and modify __init messages slightly. Signed-off-by: matt mooney <mfm@muteddisk.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/usbip/usbip_common.c')
-rw-r--r--drivers/staging/usbip/usbip_common.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/drivers/staging/usbip/usbip_common.c b/drivers/staging/usbip/usbip_common.c
index 5d842f92f59..b46e9b5d94b 100644
--- a/drivers/staging/usbip/usbip_common.c
+++ b/drivers/staging/usbip/usbip_common.c
@@ -23,13 +23,12 @@
#include <linux/in.h>
#include <linux/kthread.h>
#include <linux/slab.h>
+
#include "usbip_common.h"
-/* version information */
#define DRIVER_VERSION "1.0"
-#define DRIVER_AUTHOR \
- "Takahiro Hirofuchi <hirofuchi _at_ users.sourceforge.net>"
-#define DRIVER_DESC "usbip common driver"
+#define DRIVER_AUTHOR "Takahiro Hirofuchi <hirofuchi@users.sourceforge.net>"
+#define DRIVER_DESC "USB/IP Common Driver"
#ifdef CONFIG_USB_IP_DEBUG_ENABLE
unsigned long usbip_debug_flag = 0xffffffff;
@@ -862,7 +861,8 @@ EXPORT_SYMBOL_GPL(usbip_recv_xbuff);
static int __init usbip_common_init(void)
{
- printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_DESC "" DRIVER_VERSION);
+ printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_DESC " " DRIVER_VERSION
+ "\n");
return 0;
}
@@ -877,3 +877,4 @@ module_exit(usbip_common_exit);
MODULE_AUTHOR(DRIVER_AUTHOR);
MODULE_DESCRIPTION(DRIVER_DESC);
MODULE_LICENSE("GPL");
+MODULE_VERSION(DRIVER_VERSION);