dvb_core: add SYS_DVBS2 SYS_DVBT2 delsys mode [1/1]

PD#SWPL-7017

Problem:
TV can't search DVB/S2/T2

Solution:
add SYS_DVBS2 SYS_DVBT2 delsys mode

Verify:
Verified by R314

Change-Id: I30e39d0c236baebc31622fdd5fe1a8fc18209fe0
Signed-off-by: Yinming Ding <yinming.ding@amlogic.com>
This commit is contained in:
Yinming Ding
2019-04-16 17:39:06 +08:00
committed by Dongjin Kim
parent 6b25d1971c
commit f66b3db2a3

View File

@@ -1554,7 +1554,8 @@ static bool is_dvbv3_delsys(u32 delsys)
#ifdef CONFIG_AMLOGIC_MODIFY /* added by Amlogic 20180720 */
status = (delsys == SYS_DVBT) || (delsys == SYS_DVBC_ANNEX_A) ||
(delsys == SYS_DVBS) || (delsys == SYS_ATSC) ||
(delsys == SYS_DTMB);
(delsys == SYS_DTMB) || (delsys == SYS_DVBS2) ||
(delsys == SYS_DVBT2);
#else
status = (delsys == SYS_DVBT) || (delsys == SYS_DVBC_ANNEX_A) ||
(delsys == SYS_DVBS) || (delsys == SYS_ATSC);