mirror of https://gitee.com/openkylin/linux.git
[media] STV0900: Query DVB frontend delivery capabilities
Override default delivery system information provided by FE_GET_INFO, so that applications can enumerate delivery systems provided by the frontend. Signed-off-by: Manu Abraham <abraham.manu@gmail.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
6bad3aeb8c
commit
bcc072756e
|
@ -985,7 +985,16 @@ static int stb0900_get_property(struct dvb_frontend *fe,
|
|||
struct dtv_property *tvp)
|
||||
{
|
||||
dprintk("%s(..)\n", __func__);
|
||||
|
||||
switch (tvp->cmd) {
|
||||
case DTV_ENUM_DELSYS:
|
||||
tvp->u.buffer.data[0] = SYS_DSS;
|
||||
tvp->u.buffer.data[1] = SYS_DVBS;
|
||||
tvp->u.buffer.data[2] = SYS_DVBS2;
|
||||
tvp->u.buffer.len = 3;
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue