Commit e75873c1 authored by Istvan Varga's avatar Istvan Varga Committed by Mauro Carvalho Chehab

[media] xc4000: xc_tune_channel() cleanup

Minor coding changes related to the xc_tune_channel() function.
Signed-off-by: default avatarIstvan Varga <istvan_v@mailbox.hu>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 818a1776
...@@ -516,12 +516,10 @@ static u16 WaitForLock(struct xc4000_priv *priv) ...@@ -516,12 +516,10 @@ static u16 WaitForLock(struct xc4000_priv *priv)
return lockState; return lockState;
} }
#define XC_TUNE_ANALOG 0 static int xc_tune_channel(struct xc4000_priv *priv, u32 freq_hz)
#define XC_TUNE_DIGITAL 1
static int xc_tune_channel(struct xc4000_priv *priv, u32 freq_hz, int mode)
{ {
int found = 0; int found = 1;
int result = 0; int result;
dprintk(1, "%s(%u)\n", __func__, freq_hz); dprintk(1, "%s(%u)\n", __func__, freq_hz);
...@@ -533,9 +531,10 @@ static int xc_tune_channel(struct xc4000_priv *priv, u32 freq_hz, int mode) ...@@ -533,9 +531,10 @@ static int xc_tune_channel(struct xc4000_priv *priv, u32 freq_hz, int mode)
if (result != XC_RESULT_SUCCESS) if (result != XC_RESULT_SUCCESS)
return 0; return 0;
if (mode == XC_TUNE_ANALOG) { /* wait for lock only in analog TV mode */
if (WaitForLock(priv) == 1) if ((priv->cur_fw.type & (FM | DTV6 | DTV7 | DTV78 | DTV8)) == 0) {
found = 1; if (WaitForLock(priv) != 1)
found = 0;
} }
/* Wait for stats to stabilize. /* Wait for stats to stabilize.
...@@ -1269,7 +1268,7 @@ static int xc4000_set_params(struct dvb_frontend *fe, ...@@ -1269,7 +1268,7 @@ static int xc4000_set_params(struct dvb_frontend *fe,
} }
} }
xc_tune_channel(priv, priv->freq_hz, XC_TUNE_DIGITAL); xc_tune_channel(priv, priv->freq_hz);
ret = 0; ret = 0;
...@@ -1468,7 +1467,7 @@ static int xc4000_set_analog_params(struct dvb_frontend *fe, ...@@ -1468,7 +1467,7 @@ static int xc4000_set_analog_params(struct dvb_frontend *fe,
} }
} }
xc_tune_channel(priv, priv->freq_hz, XC_TUNE_ANALOG); xc_tune_channel(priv, priv->freq_hz);
ret = 0; ret = 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment