diff options
author | Manu Abraham <abraham.manu@gmail.com> | 2007-10-04 15:48:54 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2008-12-29 14:53:17 -0500 |
commit | aa4a9e1ae0f499dd87cddf59d32154cba9399cc9 (patch) | |
tree | 61e35d90dd9ba17d9410ff68adec25a2f3c2bf49 /drivers/media/dvb/ttpci/budget-ci.c | |
parent | f6e6382764f49ca0d94bd7dcd791456838e347b9 (diff) |
V4L/DVB (9409): Bug! inverted logic
Signed-off-by: Manu Abraham <manu@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/dvb/ttpci/budget-ci.c')
-rw-r--r-- | drivers/media/dvb/ttpci/budget-ci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/dvb/ttpci/budget-ci.c b/drivers/media/dvb/ttpci/budget-ci.c index fdcfbda5e4d8..e1bbab3dd6ba 100644 --- a/drivers/media/dvb/ttpci/budget-ci.c +++ b/drivers/media/dvb/ttpci/budget-ci.c | |||
@@ -1770,7 +1770,7 @@ static void frontend_init(struct budget_ci *budget_ci) | |||
1770 | budget_ci->budget.dvb_frontend = stb0899_attach(&tt3200_config, &budget_ci->budget.i2c_adap); | 1770 | budget_ci->budget.dvb_frontend = stb0899_attach(&tt3200_config, &budget_ci->budget.i2c_adap); |
1771 | if (budget_ci->budget.dvb_frontend) { | 1771 | if (budget_ci->budget.dvb_frontend) { |
1772 | if (stb6100_attach(budget_ci->budget.dvb_frontend, &tt3200_stb6100_config, &budget_ci->budget.i2c_adap)) { | 1772 | if (stb6100_attach(budget_ci->budget.dvb_frontend, &tt3200_stb6100_config, &budget_ci->budget.i2c_adap)) { |
1773 | if (lnbp21_attach(budget_ci->budget.dvb_frontend, &budget_ci->budget.i2c_adap, 0, 0)) { | 1773 | if (!lnbp21_attach(budget_ci->budget.dvb_frontend, &budget_ci->budget.i2c_adap, 0, 0)) { |
1774 | printk("%s: No LNBP21 found!\n", __FUNCTION__); | 1774 | printk("%s: No LNBP21 found!\n", __FUNCTION__); |
1775 | if (budget_ci->budget.dvb_frontend->ops.tuner_ops.release) | 1775 | if (budget_ci->budget.dvb_frontend->ops.tuner_ops.release) |
1776 | budget_ci->budget.dvb_frontend->ops.tuner_ops.release(budget_ci->budget.dvb_frontend); | 1776 | budget_ci->budget.dvb_frontend->ops.tuner_ops.release(budget_ci->budget.dvb_frontend); |