Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 76744
b: refs/heads/master
c: 0f96251
h: refs/heads/master
v: v3
  • Loading branch information
Michael Krufky authored and Mauro Carvalho Chehab committed Jan 25, 2008
1 parent a6500af commit 0089ae6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 839c6c96d05894815b7af0dff22b710ce5a4373a
refs/heads/master: 0f96251e7bfb2b2798f35e70efaa54bae65bfb9c
8 changes: 8 additions & 0 deletions trunk/drivers/media/dvb/frontends/tda18271-fe.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ module_param_named(debug, tda18271_debug, int, 0644);
MODULE_PARM_DESC(debug, "set debug level "
"(info=1, map=2, reg=4, adv=8, cal=16 (or-able))");

int tda18271_cal_on_startup;
module_param_named(cal, tda18271_cal_on_startup, int, 0644);
MODULE_PARM_DESC(cal, "perform RF tracking filter calibration on startup");

static LIST_HEAD(tda18271_list);
static DEFINE_MUTEX(tda18271_list_mutex);

Expand Down Expand Up @@ -1177,6 +1181,10 @@ struct dvb_frontend *tda18271_attach(struct dvb_frontend *fe, u8 addr,

mutex_lock(&priv->lock);
tda18271_init_regs(fe);

if ((tda18271_cal_on_startup) && (priv->id == TDA18271HDC2))
tda18271_rf_cal_init(fe);

mutex_unlock(&priv->lock);
}

Expand Down

0 comments on commit 0089ae6

Please sign in to comment.