diff options
Diffstat (limited to 'drivers/usb/serial/iuu_phoenix.c')
| -rw-r--r-- | drivers/usb/serial/iuu_phoenix.c | 8 | 
1 files changed, 1 insertions, 7 deletions
diff --git a/drivers/usb/serial/iuu_phoenix.c b/drivers/usb/serial/iuu_phoenix.c index cd5533e81de..1e1fbed65ef 100644 --- a/drivers/usb/serial/iuu_phoenix.c +++ b/drivers/usb/serial/iuu_phoenix.c @@ -32,10 +32,6 @@  #include "iuu_phoenix.h"  #include <linux/random.h> -/* - * Version Information - */ -#define DRIVER_VERSION "v0.12"  #define DRIVER_DESC "Infinity USB Unlimited Phoenix driver"  static const struct usb_device_id id_table[] = { @@ -1164,7 +1160,7 @@ static ssize_t store_vcc_mode(struct device *dev,  	struct iuu_private *priv = usb_get_serial_port_data(port);  	unsigned long v; -	if (strict_strtoul(buf, 10, &v)) { +	if (kstrtoul(buf, 10, &v)) {  		dev_err(dev, "%s - vcc_mode: %s is not a unsigned long\n",  				__func__, buf);  		goto fail_store_vcc_mode; @@ -1232,8 +1228,6 @@ MODULE_AUTHOR("Alain Degreffe eczema@ecze.com");  MODULE_DESCRIPTION(DRIVER_DESC);  MODULE_LICENSE("GPL"); -MODULE_VERSION(DRIVER_VERSION); -  module_param(xmas, bool, S_IRUGO | S_IWUSR);  MODULE_PARM_DESC(xmas, "Xmas colors enabled or not");  |