diff options
author | Olli Salonen <olli.salonen@iki.fi> | 2014-10-30 06:43:16 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2014-10-30 07:06:28 -0400 |
commit | 0d1165fcafaf42b153857ba6e21200fdd8c9543a (patch) | |
tree | db75b493f9845279121c8b0c2dd393d9df4106fc /drivers/media/tuners | |
parent | 1b07a77f6e1ebaebe7601fa734ff415fdf568ebb (diff) |
[media] si2157: add support for SYS_DVBC_ANNEX_B
Set the property for delivery system also in case of SYS_DVBC_ANNEX_B.
This behaviour is observed in the sniffs taken with Hauppauge HVR-955Q
Windows driver.
Signed-off-by: Olli Salonen <olli.salonen@iki.fi>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Diffstat (limited to 'drivers/media/tuners')
-rw-r--r-- | drivers/media/tuners/si2157.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/media/tuners/si2157.c b/drivers/media/tuners/si2157.c index cf97142e01e6..b086b87d0890 100644 --- a/drivers/media/tuners/si2157.c +++ b/drivers/media/tuners/si2157.c | |||
@@ -250,6 +250,9 @@ static int si2157_set_params(struct dvb_frontend *fe) | |||
250 | case SYS_ATSC: | 250 | case SYS_ATSC: |
251 | delivery_system = 0x00; | 251 | delivery_system = 0x00; |
252 | break; | 252 | break; |
253 | case SYS_DVBC_ANNEX_B: | ||
254 | delivery_system = 0x10; | ||
255 | break; | ||
253 | case SYS_DVBT: | 256 | case SYS_DVBT: |
254 | case SYS_DVBT2: /* it seems DVB-T and DVB-T2 both are 0x20 here */ | 257 | case SYS_DVBT2: /* it seems DVB-T and DVB-T2 both are 0x20 here */ |
255 | delivery_system = 0x20; | 258 | delivery_system = 0x20; |