USB: serial: ir-usb: remove startup noise
Don't be telling the syslog that the driver was loaded, the majority of the usb-serial drivers do not, so this one shouldn't either. Also remove the pointless driver version information. Cc: Rusty Russell <rusty@rustcorp.com.au> Cc: Johan Hovold <jhovold@gmail.com> Cc: Alan Stern <stern@rowland.harvard.edu> Cc: Mauro Carvalho Chehab <mchehab@redhat.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Родитель
d9bb03dc89
Коммит
7663e3088d
|
@ -38,10 +38,6 @@
|
|||
#include <linux/usb/serial.h>
|
||||
#include <linux/usb/irda.h>
|
||||
|
||||
/*
|
||||
* Version Information
|
||||
*/
|
||||
#define DRIVER_VERSION "v0.5"
|
||||
#define DRIVER_AUTHOR "Greg Kroah-Hartman <greg@kroah.com>, Johan Hovold <jhovold@gmail.com>"
|
||||
#define DRIVER_DESC "USB IR Dongle driver"
|
||||
|
||||
|
@ -428,18 +424,12 @@ err_buf:
|
|||
|
||||
static int __init ir_init(void)
|
||||
{
|
||||
int retval;
|
||||
|
||||
if (buffer_size) {
|
||||
ir_device.bulk_in_size = buffer_size;
|
||||
ir_device.bulk_out_size = buffer_size;
|
||||
}
|
||||
|
||||
retval = usb_serial_register_drivers(serial_drivers, KBUILD_MODNAME, ir_id_table);
|
||||
if (retval == 0)
|
||||
printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_VERSION ":"
|
||||
DRIVER_DESC "\n");
|
||||
return retval;
|
||||
return usb_serial_register_drivers(serial_drivers, KBUILD_MODNAME, ir_id_table);
|
||||
}
|
||||
|
||||
static void __exit ir_exit(void)
|
||||
|
|
Загрузка…
Ссылка в новой задаче