V4L/DVB (9631): Make s2api work for ATSC support

ATSC should be considered a legacy delivery system, or else fields such as
p->u.vsb.modulation do not get populated (resulting in set_frontend failures)

Cc: Steven Toth <stoth@linuxtv.org>
Signed-off-by: Devin Heitmueller <devin.heitmueller@gmail.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>

authored by Devin Heitmueller and committed by Mauro Carvalho Chehab 3fa37deb c41109fc

+2 -1
+2 -1
drivers/media/dvb/dvb-core/dvb_frontend.c
··· 934 int is_legacy_delivery_system(fe_delivery_system_t s) 935 { 936 if((s == SYS_UNDEFINED) || (s == SYS_DVBC_ANNEX_AC) || 937 - (s == SYS_DVBC_ANNEX_B) || (s == SYS_DVBT) || (s == SYS_DVBS)) 938 return 1; 939 940 return 0;
··· 934 int is_legacy_delivery_system(fe_delivery_system_t s) 935 { 936 if((s == SYS_UNDEFINED) || (s == SYS_DVBC_ANNEX_AC) || 937 + (s == SYS_DVBC_ANNEX_B) || (s == SYS_DVBT) || (s == SYS_DVBS) || 938 + (s == SYS_ATSC)) 939 return 1; 940 941 return 0;