Commit 4ce0a41f authored by matt mooney's avatar matt mooney Committed by Greg Kroah-Hartman

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: default avatarmatt mooney <mfm@muteddisk.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 6a298401
...@@ -22,7 +22,6 @@ ...@@ -22,7 +22,6 @@
#include "usbip_common.h" #include "usbip_common.h"
#include "stub.h" #include "stub.h"
/* Version Information */
#define DRIVER_VERSION "1.0" #define DRIVER_VERSION "1.0"
#define DRIVER_AUTHOR "Takahiro Hirofuchi" #define DRIVER_AUTHOR "Takahiro Hirofuchi"
#define DRIVER_DESC "Stub Driver for USB/IP" #define DRIVER_DESC "Stub Driver for USB/IP"
...@@ -279,7 +278,7 @@ static int __init usb_stub_init(void) ...@@ -279,7 +278,7 @@ static int __init usb_stub_init(void)
goto error_usb_register; goto error_usb_register;
} }
printk(KERN_INFO KBUILD_MODNAME ":" DRIVER_DESC ":" DRIVER_VERSION printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_DESC " " DRIVER_VERSION
"\n"); "\n");
init_busid_table(); init_busid_table();
...@@ -320,3 +319,4 @@ module_exit(usb_stub_exit); ...@@ -320,3 +319,4 @@ module_exit(usb_stub_exit);
MODULE_AUTHOR(DRIVER_AUTHOR); MODULE_AUTHOR(DRIVER_AUTHOR);
MODULE_DESCRIPTION(DRIVER_DESC); MODULE_DESCRIPTION(DRIVER_DESC);
MODULE_LICENSE("GPL"); MODULE_LICENSE("GPL");
MODULE_VERSION(DRIVER_VERSION);
...@@ -23,13 +23,12 @@ ...@@ -23,13 +23,12 @@
#include <linux/in.h> #include <linux/in.h>
#include <linux/kthread.h> #include <linux/kthread.h>
#include <linux/slab.h> #include <linux/slab.h>
#include "usbip_common.h" #include "usbip_common.h"
/* version information */
#define DRIVER_VERSION "1.0" #define DRIVER_VERSION "1.0"
#define DRIVER_AUTHOR \ #define DRIVER_AUTHOR "Takahiro Hirofuchi <hirofuchi@users.sourceforge.net>"
"Takahiro Hirofuchi <hirofuchi _at_ users.sourceforge.net>" #define DRIVER_DESC "USB/IP Common Driver"
#define DRIVER_DESC "usbip common driver"
#ifdef CONFIG_USB_IP_DEBUG_ENABLE #ifdef CONFIG_USB_IP_DEBUG_ENABLE
unsigned long usbip_debug_flag = 0xffffffff; unsigned long usbip_debug_flag = 0xffffffff;
...@@ -862,7 +861,8 @@ EXPORT_SYMBOL_GPL(usbip_recv_xbuff); ...@@ -862,7 +861,8 @@ EXPORT_SYMBOL_GPL(usbip_recv_xbuff);
static int __init usbip_common_init(void) 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; return 0;
} }
...@@ -877,3 +877,4 @@ module_exit(usbip_common_exit); ...@@ -877,3 +877,4 @@ module_exit(usbip_common_exit);
MODULE_AUTHOR(DRIVER_AUTHOR); MODULE_AUTHOR(DRIVER_AUTHOR);
MODULE_DESCRIPTION(DRIVER_DESC); MODULE_DESCRIPTION(DRIVER_DESC);
MODULE_LICENSE("GPL"); MODULE_LICENSE("GPL");
MODULE_VERSION(DRIVER_VERSION);
...@@ -26,7 +26,6 @@ ...@@ -26,7 +26,6 @@
#define DRIVER_VERSION "1.0" #define DRIVER_VERSION "1.0"
#define DRIVER_AUTHOR "Takahiro Hirofuchi" #define DRIVER_AUTHOR "Takahiro Hirofuchi"
#define DRIVER_DESC "Virtual Host Controller Interface Driver for USB/IP" #define DRIVER_DESC "Virtual Host Controller Interface Driver for USB/IP"
#define DRIVER_LICENCE "GPL"
/* /*
* TODO * TODO
...@@ -1269,4 +1268,5 @@ module_exit(vhci_cleanup); ...@@ -1269,4 +1268,5 @@ module_exit(vhci_cleanup);
MODULE_AUTHOR(DRIVER_AUTHOR); MODULE_AUTHOR(DRIVER_AUTHOR);
MODULE_DESCRIPTION(DRIVER_DESC); MODULE_DESCRIPTION(DRIVER_DESC);
MODULE_LICENSE(DRIVER_LICENCE); MODULE_LICENSE("GPL");
MODULE_VERSION(DRIVER_VERSION);
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