The result (if any) isn't used anywhere besides being assigned to a local
variable (and the only current companion stv6111 doesn't even implement
get_if_frequency()), thus remove the ptr check and the call, and also
remove the now unused iffreq variable.
Reported-by: Richard Scobie <rascobie@slingshot.co.nz>
Cc: Ralph Metzler <rjkm@metzlerbros.de>
Signed-off-by: Daniel Scheller <d.scheller@gmx.net>
Tested-by: Richard Scobie <rascobie@slingshot.co.nz>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
 {
        int stat = 0;
        struct stv *state = fe->demodulator_priv;
-       u32 iffreq;
        struct dtv_frontend_properties *p = &fe->dtv_property_cache;
 
        stop(state);
        if (fe->ops.tuner_ops.set_params)
                fe->ops.tuner_ops.set_params(fe);
-       if (fe->ops.tuner_ops.get_if_frequency)
-               fe->ops.tuner_ops.get_if_frequency(fe, &iffreq);
        state->symbol_rate = p->symbol_rate;
        stat = start(state, p);
        return stat;