From: Mauro Carvalho Chehab Date: Thu, 18 May 2017 11:52:25 +0000 (-0300) Subject: [media] bt8xx: add missing break X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=a042023f1bde77ca01f6bd5e98a1b8ba8aed8b6c;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git [media] bt8xx: add missing break The logic that handles CA_SET_PID is clearly missing a break: it prints that the command succeeded, but, due to the missing break, it would be returning -EOPNOTSUPP, as if the driver weren't supporting such ioctl. Signed-off-by: Mauro Carvalho Chehab --- diff --git a/drivers/media/pci/bt8xx/dst_ca.c b/drivers/media/pci/bt8xx/dst_ca.c index 04d06c564602..90f4263452d3 100644 --- a/drivers/media/pci/bt8xx/dst_ca.c +++ b/drivers/media/pci/bt8xx/dst_ca.c @@ -637,6 +637,7 @@ static long dst_ca_ioctl(struct file *file, unsigned int cmd, unsigned long ioct goto free_mem_and_exit; } dprintk(verbose, DST_CA_INFO, 1, " -->CA_SET_PID Success !"); + break; default: result = -EOPNOTSUPP; }