media: flexcop-usb: remove needless check before usb_free_coherent()
authorQinglang Miao <miaoqinglang@huawei.com>
Mon, 14 Sep 2020 06:15:13 +0000 (08:15 +0200)
committerMauro Carvalho Chehab <mchehab+huawei@kernel.org>
Sun, 27 Sep 2020 09:25:11 +0000 (11:25 +0200)
usb_free_coherent() is safe with NULL addr and this check is
not required.

Signed-off-by: Qinglang Miao <miaoqinglang@huawei.com>
Signed-off-by: Sean Young <sean@mess.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
drivers/media/usb/b2c2/flexcop-usb.c

index e4da327..e731243 100644 (file)
@@ -419,10 +419,9 @@ static void flexcop_usb_transfer_exit(struct flexcop_usb *fc_usb)
                        usb_free_urb(fc_usb->iso_urb[i]);
                }
 
-       if (fc_usb->iso_buffer != NULL)
-               usb_free_coherent(fc_usb->udev,
-                       fc_usb->buffer_size, fc_usb->iso_buffer,
-                       fc_usb->dma_addr);
+       usb_free_coherent(fc_usb->udev, fc_usb->buffer_size,
+                         fc_usb->iso_buffer, fc_usb->dma_addr);
+
 }
 
 static int flexcop_usb_transfer_init(struct flexcop_usb *fc_usb)