diff --git a/frontends/stv6111.c b/frontends/stv6111.c index 98a1cb9..28acf40 100644 --- a/frontends/stv6111.c +++ b/frontends/stv6111.c @@ -335,7 +335,9 @@ static int set_params(struct dvb_frontend *fe) static int get_frequency(struct dvb_frontend *fe, u32 *frequency) { - *frequency = 0; + struct stv *state = fe->tuner_priv; + + *frequency = state->Frequency; return 0; }