aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@redhat.com>2011-12-31 07:38:23 -0500
committerMauro Carvalho Chehab <mchehab@redhat.com>2011-12-31 07:38:23 -0500
commit533b673b193cb3412f20eac5d24119ed3d240211 (patch)
treee1e25c668957391543ec3bf9189cf522e3873c99
parent7c61d80a9bcfc3fdec8ffd75756cad6a64678229 (diff)
[media] dvb: Add ops.delsys to the remaining frontends
A few drivers don't have .delsys. Add it, in order to allow future patches for dvb_frontend.c to not use info.type. Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
-rw-r--r--drivers/media/dvb/frontends/s5h1432.c2
-rw-r--r--drivers/media/dvb/frontends/stv0297.c2
-rw-r--r--drivers/media/dvb/frontends/tda10048.c2
-rw-r--r--drivers/media/dvb/pt1/va1j5jf8007s.c1
-rw-r--r--drivers/media/dvb/pt1/va1j5jf8007t.c1
5 files changed, 5 insertions, 3 deletions
diff --git a/drivers/media/dvb/frontends/s5h1432.c b/drivers/media/dvb/frontends/s5h1432.c
index 3a9050fffb8..baa3aae160b 100644
--- a/drivers/media/dvb/frontends/s5h1432.c
+++ b/drivers/media/dvb/frontends/s5h1432.c
@@ -375,7 +375,7 @@ error:
375EXPORT_SYMBOL(s5h1432_attach); 375EXPORT_SYMBOL(s5h1432_attach);
376 376
377static struct dvb_frontend_ops s5h1432_ops = { 377static struct dvb_frontend_ops s5h1432_ops = {
378 378 .delsys = { SYS_DVBT },
379 .info = { 379 .info = {
380 .name = "Samsung s5h1432 DVB-T Frontend", 380 .name = "Samsung s5h1432 DVB-T Frontend",
381 .type = FE_OFDM, 381 .type = FE_OFDM,
diff --git a/drivers/media/dvb/frontends/stv0297.c b/drivers/media/dvb/frontends/stv0297.c
index dd0a1903e74..8f74762ca76 100644
--- a/drivers/media/dvb/frontends/stv0297.c
+++ b/drivers/media/dvb/frontends/stv0297.c
@@ -690,7 +690,7 @@ error:
690} 690}
691 691
692static struct dvb_frontend_ops stv0297_ops = { 692static struct dvb_frontend_ops stv0297_ops = {
693 693 .delsys = { SYS_DVBC },
694 .info = { 694 .info = {
695 .name = "ST STV0297 DVB-C", 695 .name = "ST STV0297 DVB-C",
696 .type = FE_QAM, 696 .type = FE_QAM,
diff --git a/drivers/media/dvb/frontends/tda10048.c b/drivers/media/dvb/frontends/tda10048.c
index 99bf0c0f97b..57711cbe28a 100644
--- a/drivers/media/dvb/frontends/tda10048.c
+++ b/drivers/media/dvb/frontends/tda10048.c
@@ -1157,7 +1157,7 @@ error:
1157EXPORT_SYMBOL(tda10048_attach); 1157EXPORT_SYMBOL(tda10048_attach);
1158 1158
1159static struct dvb_frontend_ops tda10048_ops = { 1159static struct dvb_frontend_ops tda10048_ops = {
1160 1160 .delsys = { SYS_DVBT },
1161 .info = { 1161 .info = {
1162 .name = "NXP TDA10048HN DVB-T", 1162 .name = "NXP TDA10048HN DVB-T",
1163 .type = FE_OFDM, 1163 .type = FE_OFDM,
diff --git a/drivers/media/dvb/pt1/va1j5jf8007s.c b/drivers/media/dvb/pt1/va1j5jf8007s.c
index 78344e3a5c7..ef74440ee98 100644
--- a/drivers/media/dvb/pt1/va1j5jf8007s.c
+++ b/drivers/media/dvb/pt1/va1j5jf8007s.c
@@ -579,6 +579,7 @@ static void va1j5jf8007s_release(struct dvb_frontend *fe)
579} 579}
580 580
581static struct dvb_frontend_ops va1j5jf8007s_ops = { 581static struct dvb_frontend_ops va1j5jf8007s_ops = {
582 .delsys = { SYS_ISDBS },
582 .info = { 583 .info = {
583 .name = "VA1J5JF8007/VA1J5JF8011 ISDB-S", 584 .name = "VA1J5JF8007/VA1J5JF8011 ISDB-S",
584 .type = FE_QPSK, 585 .type = FE_QPSK,
diff --git a/drivers/media/dvb/pt1/va1j5jf8007t.c b/drivers/media/dvb/pt1/va1j5jf8007t.c
index c64282002c5..6eeabc8d4c7 100644
--- a/drivers/media/dvb/pt1/va1j5jf8007t.c
+++ b/drivers/media/dvb/pt1/va1j5jf8007t.c
@@ -428,6 +428,7 @@ static void va1j5jf8007t_release(struct dvb_frontend *fe)
428} 428}
429 429
430static struct dvb_frontend_ops va1j5jf8007t_ops = { 430static struct dvb_frontend_ops va1j5jf8007t_ops = {
431 .delsys = { SYS_ISDBT },
431 .info = { 432 .info = {
432 .name = "VA1J5JF8007/VA1J5JF8011 ISDB-T", 433 .name = "VA1J5JF8007/VA1J5JF8011 ISDB-T",
433 .type = FE_OFDM, 434 .type = FE_OFDM,