diff options
author | Mauro Carvalho Chehab <mchehab@redhat.com> | 2011-12-31 10:38:23 -0200 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2011-12-31 10:38:23 -0200 |
commit | 533b673b193cb3412f20eac5d24119ed3d240211 (patch) | |
tree | e1e25c668957391543ec3bf9189cf522e3873c99 /drivers/media/dvb/pt1 | |
parent | 7c61d80a9bcfc3fdec8ffd75756cad6a64678229 (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>
Diffstat (limited to 'drivers/media/dvb/pt1')
-rw-r--r-- | drivers/media/dvb/pt1/va1j5jf8007s.c | 1 | ||||
-rw-r--r-- | drivers/media/dvb/pt1/va1j5jf8007t.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/drivers/media/dvb/pt1/va1j5jf8007s.c b/drivers/media/dvb/pt1/va1j5jf8007s.c index 78344e3a5c7a..ef74440ee983 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) } static struct dvb_frontend_ops va1j5jf8007s_ops = { + .delsys = { SYS_ISDBS }, .info = { .name = "VA1J5JF8007/VA1J5JF8011 ISDB-S", .type = FE_QPSK, diff --git a/drivers/media/dvb/pt1/va1j5jf8007t.c b/drivers/media/dvb/pt1/va1j5jf8007t.c index c64282002c5d..6eeabc8d4c70 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) } static struct dvb_frontend_ops va1j5jf8007t_ops = { + .delsys = { SYS_ISDBT }, .info = { .name = "VA1J5JF8007/VA1J5JF8011 ISDB-T", .type = FE_OFDM, |