diff options
author | Mauro Carvalho Chehab <mchehab@redhat.com> | 2013-01-04 23:03:14 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2013-01-04 23:06:58 -0500 |
commit | 2c46bb119f13a3ebc62461dac498a7057f5b4a94 (patch) | |
tree | 25cce254d3f25a87f8bcd610f740a0fcad2a619e | |
parent | 39793c6900b89c22cf30e0c83207df8c0a5458df (diff) |
[media] ngene: fix commit 36a495a336c3fbbb2f4eeed2a94ab6d5be19d186
The above commit were applied only partially; it broke tuner and
demod attach, but the part that added it to ngene_info was missing.
Not sure what happened there, but, without this patch, a regression
would be happening.
Also, gcc complains about a defined but not used symbol.
So, apply manually the missing part.
Cc: Patrice Chotard <patricechotard@free.fr>
Cc: Antti Palosaari <crope@iki.fi>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
-rw-r--r-- | drivers/media/pci/ngene/ngene-cards.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/media/pci/ngene/ngene-cards.c b/drivers/media/pci/ngene/ngene-cards.c index 2a4895b0706b..82318d11696f 100644 --- a/drivers/media/pci/ngene/ngene-cards.c +++ b/drivers/media/pci/ngene/ngene-cards.c | |||
@@ -732,6 +732,7 @@ static struct ngene_info ngene_info_terratec = { | |||
732 | .name = "Terratec Integra/Cinergy2400i Dual DVB-T", | 732 | .name = "Terratec Integra/Cinergy2400i Dual DVB-T", |
733 | .io_type = {NGENE_IO_TSIN, NGENE_IO_TSIN}, | 733 | .io_type = {NGENE_IO_TSIN, NGENE_IO_TSIN}, |
734 | .demod_attach = {demod_attach_drxd, demod_attach_drxd}, | 734 | .demod_attach = {demod_attach_drxd, demod_attach_drxd}, |
735 | .tuner_attach = {tuner_attach_dtt7520x, tuner_attach_dtt7520x}, | ||
735 | .fe_config = {&fe_terratec_dvbt_0, &fe_terratec_dvbt_1}, | 736 | .fe_config = {&fe_terratec_dvbt_0, &fe_terratec_dvbt_1}, |
736 | .i2c_access = 1, | 737 | .i2c_access = 1, |
737 | }; | 738 | }; |