Skip to content

Commit 6446a22

Browse files
committed
media: si2157: add support for ISDB-T and DTMB
Those two delivery systems are supported by some of the si2146 tuners, but the current code is missing the setup for those. Signed-off-by: Mauro Carvalho Chehab <[email protected]>
1 parent 805d5a0 commit 6446a22

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

drivers/media/tuners/si2157.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -483,6 +483,12 @@ static int si2157_set_params(struct dvb_frontend *fe)
483483
case SYS_DVBC_ANNEX_A:
484484
delivery_system = 0x30;
485485
break;
486+
case SYS_ISDBT:
487+
delivery_system = 0x40;
488+
break;
489+
case SYS_DTMB:
490+
delivery_system = 0x60;
491+
break;
486492
default:
487493
ret = -EINVAL;
488494
goto err;

0 commit comments

Comments
 (0)