aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/dvb/ttpci/budget-ci.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/media/dvb/ttpci/budget-ci.c')
-rw-r--r--drivers/media/dvb/ttpci/budget-ci.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/media/dvb/ttpci/budget-ci.c b/drivers/media/dvb/ttpci/budget-ci.c
index 509349211d4f..6530323d5406 100644
--- a/drivers/media/dvb/ttpci/budget-ci.c
+++ b/drivers/media/dvb/ttpci/budget-ci.c
@@ -86,7 +86,7 @@ static int rc5_device = -1;
86module_param(rc5_device, int, 0644); 86module_param(rc5_device, int, 0644);
87MODULE_PARM_DESC(rc5_device, "only IR commands to given RC5 device (device = 0 - 31, any device = 255, default: autodetect)"); 87MODULE_PARM_DESC(rc5_device, "only IR commands to given RC5 device (device = 0 - 31, any device = 255, default: autodetect)");
88 88
89static int ir_debug = 0; 89static int ir_debug;
90module_param(ir_debug, int, 0644); 90module_param(ir_debug, int, 0644);
91MODULE_PARM_DESC(ir_debug, "enable debugging information for IR decoding"); 91MODULE_PARM_DESC(ir_debug, "enable debugging information for IR decoding");
92 92
@@ -728,7 +728,7 @@ static struct stv0299_config philips_su1278_tt_config = {
728 .mclk = 64000000UL, 728 .mclk = 64000000UL,
729 .invert = 0, 729 .invert = 0,
730 .skip_reinit = 1, 730 .skip_reinit = 1,
731 .lock_output = STV0229_LOCKOUTPUT_1, 731 .lock_output = STV0299_LOCKOUTPUT_1,
732 .volt13_op0_op1 = STV0299_VOLT13_OP1, 732 .volt13_op0_op1 = STV0299_VOLT13_OP1,
733 .min_delay_ms = 50, 733 .min_delay_ms = 50,
734 .set_symbol_rate = philips_su1278_tt_set_symbol_rate, 734 .set_symbol_rate = philips_su1278_tt_set_symbol_rate,
@@ -1121,7 +1121,7 @@ static void frontend_init(struct budget_ci *budget_ci)
1121 1121
1122 budget_ci->budget.dvb_frontend->ops.dishnetwork_send_legacy_command = NULL; 1122 budget_ci->budget.dvb_frontend->ops.dishnetwork_send_legacy_command = NULL;
1123 if (dvb_attach(lnbp21_attach, budget_ci->budget.dvb_frontend, &budget_ci->budget.i2c_adap, LNBP21_LLC, 0) == NULL) { 1123 if (dvb_attach(lnbp21_attach, budget_ci->budget.dvb_frontend, &budget_ci->budget.i2c_adap, LNBP21_LLC, 0) == NULL) {
1124 printk("%s: No LNBP21 found!\n", __FUNCTION__); 1124 printk("%s: No LNBP21 found!\n", __func__);
1125 dvb_frontend_detach(budget_ci->budget.dvb_frontend); 1125 dvb_frontend_detach(budget_ci->budget.dvb_frontend);
1126 budget_ci->budget.dvb_frontend = NULL; 1126 budget_ci->budget.dvb_frontend = NULL;
1127 } 1127 }