提交 c0b34ab1 编写于 作者: C Colin Ian King 提交者: Mauro Carvalho Chehab

[media] cx24120: do not allow an invalid delivery system types

cx24120_set_frontend currently allows invalid delivery system types
other than SYS_DVBS2 and SYS_DVBS.  Fix this by returning -EINVAL
for invalid values.
Signed-off-by: NColin Ian King <colin.king@canonical.com>
Acked-by: NJemma Denson <jdenson@gmail.com>
上级 37e78568
......@@ -1154,8 +1154,7 @@ static int cx24120_set_frontend(struct dvb_frontend *fe)
dev_dbg(&state->i2c->dev,
"delivery system(%d) not supported\n",
c->delivery_system);
ret = -EINVAL;
break;
return -EINVAL;
}
state->dnxt.delsys = c->delivery_system;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册