return 0;
}
+static inline int tda18271_tune(struct dvb_frontend *fe,
+ u32 ifc, u32 freq, u32 bw, u8 std)
+{
+ struct tda18271_priv *priv = fe->tuner_priv;
+ int ret = -EINVAL;
+
+ switch (priv->id) {
+ case TDA18271HDC1:
+ ret = tda18271c1_tune(fe, ifc, freq, bw, std);
+ break;
+ case TDA18271HDC2:
+ ret = tda18271c2_tune(fe, ifc, freq, bw, std);
+ break;
+ }
+ return ret;
+}
+
/* ------------------------------------------------------------------ */
static int tda18271_set_params(struct dvb_frontend *fe,
{
struct tda18271_priv *priv = fe->tuner_priv;
struct tda18271_std_map *std_map = &priv->std;
+ int ret;
u8 std;
u16 sgIF;
u32 bw, freq = params->frequency;
- BUG_ON(!priv->tune);
-
priv->mode = TDA18271_DIGITAL;
/* see table 22 */
return -EINVAL;
}
- return priv->tune(fe, sgIF * 1000, freq, bw, std);
+ ret = tda18271_tune(fe, sgIF * 1000, freq, bw, std);
+
+ if (ret < 0)
+ goto fail;
+
+ priv->frequency = freq;
+ priv->bandwidth = (fe->ops.info.type == FE_OFDM) ?
+ params->u.ofdm.bandwidth : 0;
+fail:
+ return ret;
}
static int tda18271_set_analog_params(struct dvb_frontend *fe,
struct tda18271_priv *priv = fe->tuner_priv;
struct tda18271_std_map *std_map = &priv->std;
char *mode;
+ int ret;
u8 std;
u16 sgIF;
u32 freq = params->frequency * 62500;
- BUG_ON(!priv->tune);
-
priv->mode = TDA18271_ANALOG;
if (params->std & V4L2_STD_MN) {
tda_dbg("setting tda18271 to system %s\n", mode);
- return priv->tune(fe, sgIF * 1000, freq, 0, std);
+ ret = tda18271_tune(fe, sgIF * 1000, freq, 0, std);
+
+ if (ret < 0)
+ goto fail;
+
+ priv->frequency = freq;
+ priv->bandwidth = 0;
+fail:
+ return ret;
}
static int tda18271_release(struct dvb_frontend *fe)
case 3:
name = "TDA18271HD/C1";
priv->id = TDA18271HDC1;
- priv->tune = tda18271c1_tune;
break;
case 4:
name = "TDA18271HD/C2";
priv->id = TDA18271HDC2;
- priv->tune = tda18271c2_tune;
break;
default:
name = "Unknown device";