Skip to content

Commit

Permalink
USB: whiteheat: remove driver version
Browse files Browse the repository at this point in the history
Remove driver version -- it's the kernel version that matters.

Signed-off-by: Johan Hovold <jhovold@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Johan Hovold authored and Greg Kroah-Hartman committed Apr 10, 2012
1 parent e2dd3af commit a6765cb
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions drivers/usb/serial/whiteheat.c
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ static bool debug;
/*
* Version Information
*/
#define DRIVER_VERSION "v2.0"
#define DRIVER_AUTHOR "Greg Kroah-Hartman <greg@kroah.com>, Stuart MacDonald <stuartm@connecttech.com>"
#define DRIVER_DESC "USB ConnectTech WhiteHEAT driver"

Expand Down Expand Up @@ -408,8 +407,8 @@ static int whiteheat_attach(struct usb_serial *serial)

hw_info = (struct whiteheat_hw_info *)&result[1];

dev_info(&serial->dev->dev, "%s: Driver %s: Firmware v%d.%02d\n",
serial->type->description, DRIVER_VERSION,
dev_info(&serial->dev->dev, "%s: Firmware v%d.%02d\n",
serial->type->description,
hw_info->sw_major_rev, hw_info->sw_minor_rev);

for (i = 0; i < serial->num_ports; i++) {
Expand Down

0 comments on commit a6765cb

Please sign in to comment.