[media] staging: media: lirc: lirc_imon: don't print error when allocating urb fails
[deliverable/linux.git] / drivers / staging / media / lirc / lirc_imon.c
index ff1926ca1f96f538219478a1a17ba215e81f9ef7..a183e68ec32089b788acb640f0fe14f0520b10e4 100644 (file)
@@ -797,16 +797,11 @@ static int imon_probe(struct usb_interface *interface,
                goto free_rbuf;
        }
        rx_urb = usb_alloc_urb(0, GFP_KERNEL);
-       if (!rx_urb) {
-               dev_err(dev, "%s: usb_alloc_urb failed for IR urb\n", __func__);
+       if (!rx_urb)
                goto free_lirc_buf;
-       }
        tx_urb = usb_alloc_urb(0, GFP_KERNEL);
-       if (!tx_urb) {
-               dev_err(dev, "%s: usb_alloc_urb failed for display urb\n",
-                   __func__);
+       if (!tx_urb)
                goto free_rx_urb;
-       }
 
        mutex_init(&context->ctx_lock);
        context->vfd_proto_6p = vfd_proto_6p;
This page took 0.025296 seconds and 5 git commands to generate.