Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 201981
b: refs/heads/master
c: fab9bfb
h: refs/heads/master
i:
  201979: bc7d1dd
v: v3
  • Loading branch information
Michael Krufky authored and Mauro Carvalho Chehab committed Aug 2, 2010
1 parent 1748b9e commit bf17fd9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 4359e5b5ba3b746cd02bd3a18d576b11c0843419
refs/heads/master: fab9bfbed22f91f271a93a3dfa142179a2278935
8 changes: 5 additions & 3 deletions trunk/drivers/media/common/tuners/tda18271-fe.c
Original file line number Diff line number Diff line change
Expand Up @@ -1249,7 +1249,7 @@ struct dvb_frontend *tda18271_attach(struct dvb_frontend *fe, u8 addr,
struct tda18271_config *cfg)
{
struct tda18271_priv *priv = NULL;
int instance;
int instance, ret;

mutex_lock(&tda18271_list_mutex);

Expand All @@ -1268,10 +1268,12 @@ struct dvb_frontend *tda18271_attach(struct dvb_frontend *fe, u8 addr,
priv->cal_initialized = false;
mutex_init(&priv->lock);

if (tda_fail(tda18271_get_id(fe)))
ret = tda18271_get_id(fe);
if (tda_fail(ret))
goto fail;

if (tda_fail(tda18271_assign_map_layout(fe)))
ret = tda18271_assign_map_layout(fe);
if (tda_fail(ret))
goto fail;

mutex_lock(&priv->lock);
Expand Down

0 comments on commit bf17fd9

Please sign in to comment.