There is only one waiter for the completion, therefore there is no need
to use complete_all(). Let's make that clear by using complete() instead
of complete_all().
While we are at it, we do a small optimization with the reinitialization
of the completion before we use it.
The usage pattern of the completion is:
waiter context                          waker context
send_packet()
  init_completion()
  usb_submit_urb()
  wait_for_completion_interruptible()
                                        usb_tx_callback()
                                          complete()
                                        imon_disonnect()
                                          complete()
Signed-off-by: Daniel Wagner <daniel.wagner@bmw-carit.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
                ictx->tx_urb->actual_length = 0;
        }
 
-       init_completion(&ictx->tx.finished);
+       reinit_completion(&ictx->tx.finished);
        ictx->tx.busy = true;
        smp_rmb(); /* ensure later readers know we're busy */
 
        ictx->tx_urb = tx_urb;
        ictx->rf_device = false;
 
+       init_completion(&ictx->tx.finished);
+
        ictx->vendor  = le16_to_cpu(ictx->usbdev_intf0->descriptor.idVendor);
        ictx->product = le16_to_cpu(ictx->usbdev_intf0->descriptor.idProduct);
 
        /* Abort ongoing write */
        if (ictx->tx.busy) {
                usb_kill_urb(ictx->tx_urb);
-               complete_all(&ictx->tx.finished);
+               complete(&ictx->tx.finished);
        }
 
        if (ifnum == 0) {