diff options
author | Filip Aben <f.aben@option.com> | 2010-07-13 00:21:27 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-07-13 00:21:27 -0400 |
commit | 242647bcf8464860f173f3d4d4ab3490d3558518 (patch) | |
tree | 73896502e1ad7de3f6710da65325305af0d9ee0c /drivers/net/usb/hso.c | |
parent | 55a40e243210b72169eaa1cbd9b6edc6097571f8 (diff) |
hso: remove driver version
This patch removes the driver version from the driver. This version
hasn't changed since the driver's inclusion in the kernel and is a
source of confusion for some customers.
Signed-off-by: Filip Aben <f.aben@option.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/usb/hso.c')
-rw-r--r-- | drivers/net/usb/hso.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/net/usb/hso.c b/drivers/net/usb/hso.c index 39422f71e1d0..a3a684cb89a9 100644 --- a/drivers/net/usb/hso.c +++ b/drivers/net/usb/hso.c | |||
@@ -73,7 +73,6 @@ | |||
73 | #include <linux/serial.h> | 73 | #include <linux/serial.h> |
74 | 74 | ||
75 | 75 | ||
76 | #define DRIVER_VERSION "1.2" | ||
77 | #define MOD_AUTHOR "Option Wireless" | 76 | #define MOD_AUTHOR "Option Wireless" |
78 | #define MOD_DESCRIPTION "USB High Speed Option driver" | 77 | #define MOD_DESCRIPTION "USB High Speed Option driver" |
79 | #define MOD_LICENSE "GPL" | 78 | #define MOD_LICENSE "GPL" |
@@ -401,7 +400,7 @@ static int disable_net; | |||
401 | /* driver info */ | 400 | /* driver info */ |
402 | static const char driver_name[] = "hso"; | 401 | static const char driver_name[] = "hso"; |
403 | static const char tty_filename[] = "ttyHS"; | 402 | static const char tty_filename[] = "ttyHS"; |
404 | static const char *version = __FILE__ ": " DRIVER_VERSION " " MOD_AUTHOR; | 403 | static const char *version = __FILE__ ": " MOD_AUTHOR; |
405 | /* the usb driver itself (registered in hso_init) */ | 404 | /* the usb driver itself (registered in hso_init) */ |
406 | static struct usb_driver hso_driver; | 405 | static struct usb_driver hso_driver; |
407 | /* serial structures */ | 406 | /* serial structures */ |
@@ -848,7 +847,6 @@ static void hso_get_drvinfo(struct net_device *net, struct ethtool_drvinfo *info | |||
848 | struct hso_net *odev = netdev_priv(net); | 847 | struct hso_net *odev = netdev_priv(net); |
849 | 848 | ||
850 | strncpy(info->driver, driver_name, ETHTOOL_BUSINFO_LEN); | 849 | strncpy(info->driver, driver_name, ETHTOOL_BUSINFO_LEN); |
851 | strncpy(info->version, DRIVER_VERSION, ETHTOOL_BUSINFO_LEN); | ||
852 | usb_make_path(odev->parent->usb, info->bus_info, sizeof info->bus_info); | 850 | usb_make_path(odev->parent->usb, info->bus_info, sizeof info->bus_info); |
853 | } | 851 | } |
854 | 852 | ||
@@ -3388,7 +3386,6 @@ module_exit(hso_exit); | |||
3388 | MODULE_AUTHOR(MOD_AUTHOR); | 3386 | MODULE_AUTHOR(MOD_AUTHOR); |
3389 | MODULE_DESCRIPTION(MOD_DESCRIPTION); | 3387 | MODULE_DESCRIPTION(MOD_DESCRIPTION); |
3390 | MODULE_LICENSE(MOD_LICENSE); | 3388 | MODULE_LICENSE(MOD_LICENSE); |
3391 | MODULE_INFO(Version, DRIVER_VERSION); | ||
3392 | 3389 | ||
3393 | /* change the debug level (eg: insmod hso.ko debug=0x04) */ | 3390 | /* change the debug level (eg: insmod hso.ko debug=0x04) */ |
3394 | MODULE_PARM_DESC(debug, "Level of debug [0x01 | 0x02 | 0x04 | 0x08 | 0x10]"); | 3391 | MODULE_PARM_DESC(debug, "Level of debug [0x01 | 0x02 | 0x04 | 0x08 | 0x10]"); |