]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/commitdiff
media: lmedm04: Fix misuse of comma
authorJoe Perches <joe@perches.com>
Sun, 23 Aug 2020 18:13:31 +0000 (20:13 +0200)
committerKleber Sacilotto de Souza <kleber.souza@canonical.com>
Wed, 14 Apr 2021 16:31:26 +0000 (18:31 +0200)
BugLink: https://bugs.launchpad.net/bugs/1918974
[ Upstream commit 59a3e78f8cc33901fe39035c1ab681374bba95ad ]

There's a comma used instead of a semicolon that causes multiple
statements to be executed after an if instead of just the intended
single statement.

Replace the comma with a semicolon.

Fixes: 15e1ce33182d ("[media] lmedm04: Fix usb_submit_urb BOGUS urb xfer, pipe 1 != type 3 in interrupt urb")
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Sean Young <sean@mess.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
Signed-off-by: Kamal Mostafa <kamal@canonical.com>
Signed-off-by: Kelsey Skunberg <kelsey.skunberg@canonical.com>
drivers/media/usb/dvb-usb-v2/lmedm04.c

index 62d3566bf7eeb718b22a1f6923b79e0752060f42..5ac1a6af8782629f13acd681544875bd517712de 100644 (file)
@@ -391,7 +391,7 @@ static int lme2510_int_read(struct dvb_usb_adapter *adap)
        ep = usb_pipe_endpoint(d->udev, lme_int->lme_urb->pipe);
 
        if (usb_endpoint_type(&ep->desc) == USB_ENDPOINT_XFER_BULK)
-               lme_int->lme_urb->pipe = usb_rcvbulkpipe(d->udev, 0xa),
+               lme_int->lme_urb->pipe = usb_rcvbulkpipe(d->udev, 0xa);
 
        usb_submit_urb(lme_int->lme_urb, GFP_ATOMIC);
        info("INT Interrupt Service Started");