USB: serial: ir-usb: remove startup noise
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 18 Sep 2012 16:00:48 +0000 (17:00 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 18 Sep 2012 16:03:11 +0000 (17:03 +0100)
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>
drivers/usb/serial/ir-usb.c

index 7b7319d3a81378a503a0df6370308af763c056d7..4ac3a3a50cfb346c54af7aab05b51ed7bafcccbd 100644 (file)
 #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)
This page took 0.040679 seconds and 5 git commands to generate.