[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:
Manu Abraham 2011-11-17 05:10:49 -03:00 committed by Mauro Carvalho Chehab
parent 6bad3aeb8c
commit bcc072756e
1 changed files with 10 additions and 1 deletions

View File

@ -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;
}