Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a042023f authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab
Browse files

[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: default avatarMauro Carvalho Chehab <mchehab@s-opensource.com>
parent b7c15d5d
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -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;
	}