diff options
author | Larry Finger <Larry.Finger@lwfinger.net> | 2012-06-22 12:26:04 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-06-23 00:24:49 -0400 |
commit | 1c1b86215730ef07d8851c2247b9ecf73038d05d (patch) | |
tree | 6295c3de9dfe450265875e6d216ba7ea67f1bd0c | |
parent | 8b32b11c2eb800c636975dbc37e4e11f36790493 (diff) |
staging: r8712u: Remove useless driver version info
This driver contains version information that is outdated, has no real
value in terms of the Linux update process, and tends to confuse users.
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/rtl8712/usb_intf.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/staging/rtl8712/usb_intf.c b/drivers/staging/rtl8712/usb_intf.c index 9bd18e2d0513..f9c32cae64e7 100644 --- a/drivers/staging/rtl8712/usb_intf.c +++ b/drivers/staging/rtl8712/usb_intf.c | |||
@@ -41,8 +41,6 @@ | |||
41 | #include "usb_ops.h" | 41 | #include "usb_ops.h" |
42 | #include "usb_osintf.h" | 42 | #include "usb_osintf.h" |
43 | 43 | ||
44 | #define DRVER "v7_0.20100831" | ||
45 | |||
46 | static struct usb_interface *pintf; | 44 | static struct usb_interface *pintf; |
47 | 45 | ||
48 | static int r871xu_drv_init(struct usb_interface *pusb_intf, | 46 | static int r871xu_drv_init(struct usb_interface *pusb_intf, |
@@ -372,7 +370,7 @@ static int r871xu_drv_init(struct usb_interface *pusb_intf, | |||
372 | struct net_device *pnetdev; | 370 | struct net_device *pnetdev; |
373 | struct usb_device *udev; | 371 | struct usb_device *udev; |
374 | 372 | ||
375 | printk(KERN_INFO "r8712u: DriverVersion: %s\n", DRVER); | 373 | printk(KERN_INFO "r8712u: Staging version\n"); |
376 | /* In this probe function, O.S. will provide the usb interface pointer | 374 | /* In this probe function, O.S. will provide the usb interface pointer |
377 | * to driver. We have to increase the reference count of the usb device | 375 | * to driver. We have to increase the reference count of the usb device |
378 | * structure by using the usb_get_dev function. | 376 | * structure by using the usb_get_dev function. |