]> git.openfabrics.org - ~shefty/rdma-dev.git/commitdiff
USB: idmouse.c: remove err() usage
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 20 Apr 2012 23:53:42 +0000 (16:53 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 20 Apr 2012 23:53:42 +0000 (16:53 -0700)
err() was a very old USB-specific macro that I thought had
gone away.  This patch removes it from being used in the
driver and uses dev_err() instead.

CC: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
CC: Sarah Sharp <sarah.a.sharp@linux.intel.com>
CC: Felipe Balbi <balbi@ti.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/misc/idmouse.c

index 0dee24698504e5b82b77723e854ac212cefd5bd4..c00fcd74d39dc0dd226393ef3efac26596843c14 100644 (file)
@@ -366,14 +366,14 @@ static int idmouse_probe(struct usb_interface *interface,
                        kmalloc(IMGSIZE + dev->bulk_in_size, GFP_KERNEL);
 
                if (!dev->bulk_in_buffer) {
-                       err("Unable to allocate input buffer.");
+                       dev_err(&interface->dev, "Unable to allocate input buffer.\n");
                        idmouse_delete(dev);
                        return -ENOMEM;
                }
        }
 
        if (!(dev->bulk_in_endpointAddr)) {
-               err("Unable to find bulk-in endpoint.");
+               dev_err(&interface->dev, "Unable to find bulk-in endpoint.\n");
                idmouse_delete(dev);
                return -ENODEV;
        }
@@ -385,7 +385,7 @@ static int idmouse_probe(struct usb_interface *interface,
        result = usb_register_dev(interface, &idmouse_class);
        if (result) {
                /* something prevented us from registering this device */
-               err("Unble to allocate minor number.");
+               dev_err(&interface->dev, "Unble to allocate minor number.\n");
                usb_set_intfdata(interface, NULL);
                idmouse_delete(dev);
                return result;