Browse Source

[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>
Manu Abraham 13 years ago
parent
commit
bcc072756e
1 changed files with 10 additions and 1 deletions
  1. 10 1
      drivers/media/dvb/frontends/stv0900_core.c

+ 10 - 1
drivers/media/dvb/frontends/stv0900_core.c

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