mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-17 17:24:17 +08:00
USB: serial: ti_usb_3410_5052: fix up noisy printk() usage
The driver should not be sending any printk() messages when it is loaded, as no other USB serial driver does. This fixes that, and also removes the useless version number from the driver. Cc: Johan Hovold <jhovold@gmail.com> Cc: Rusty Russell <rusty@rustcorp.com.au> Cc: Adhir Ramjiawan <adhirramjiawan0@gmail.com> Cc: Andrew Lunn <andrew@lunn.ch> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
93ba0f037b
commit
f378dfe4be
@ -40,7 +40,6 @@
|
||||
|
||||
/* Defines */
|
||||
|
||||
#define TI_DRIVER_VERSION "v0.10"
|
||||
#define TI_DRIVER_AUTHOR "Al Borchers <alborchers@steinerpoint.com>"
|
||||
#define TI_DRIVER_DESC "TI USB 3410/5052 Serial Driver"
|
||||
|
||||
@ -276,7 +275,6 @@ static struct usb_serial_driver * const serial_drivers[] = {
|
||||
|
||||
MODULE_AUTHOR(TI_DRIVER_AUTHOR);
|
||||
MODULE_DESCRIPTION(TI_DRIVER_DESC);
|
||||
MODULE_VERSION(TI_DRIVER_VERSION);
|
||||
MODULE_LICENSE("GPL");
|
||||
|
||||
MODULE_FIRMWARE("ti_3410.fw");
|
||||
@ -312,7 +310,6 @@ MODULE_DEVICE_TABLE(usb, ti_id_table_combined);
|
||||
static int __init ti_init(void)
|
||||
{
|
||||
int i, j, c;
|
||||
int ret;
|
||||
|
||||
/* insert extra vendor and product ids */
|
||||
c = ARRAY_SIZE(ti_id_table_combined) - 2 * TI_EXTRA_VID_PID_COUNT - 1;
|
||||
@ -335,11 +332,7 @@ static int __init ti_init(void)
|
||||
ti_id_table_combined[c].match_flags = USB_DEVICE_ID_MATCH_DEVICE;
|
||||
}
|
||||
|
||||
ret = usb_serial_register_drivers(serial_drivers, KBUILD_MODNAME, ti_id_table_combined);
|
||||
if (ret == 0)
|
||||
printk(KERN_INFO KBUILD_MODNAME ": " TI_DRIVER_VERSION ":"
|
||||
TI_DRIVER_DESC "\n");
|
||||
return ret;
|
||||
return usb_serial_register_drivers(serial_drivers, KBUILD_MODNAME, ti_id_table_combined);
|
||||
}
|
||||
|
||||
static void __exit ti_exit(void)
|
||||
|
Loading…
Reference in New Issue
Block a user