The calls to set the pll ops were in the wrong place - moved them.
Signed-off-by: Andrew de Quincey <adq_dvb@lidskialf.net>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
        struct dib3000_config demod_cfg;
        struct dibusb_state *st = d->priv;
 
-       d->fe->ops->tuner_ops.init = dvb_usb_tuner_init_i2c;
-       d->fe->ops->tuner_ops.set_params = dvb_usb_tuner_set_params_i2c;
-
        for (demod_cfg.demod_address = 0x8; demod_cfg.demod_address < 0xd; demod_cfg.demod_address++)
                if ((d->fe = dib3000mc_attach(&demod_cfg,&d->i2c_adap,&st->ops)) != NULL) {
+                       d->fe->ops->tuner_ops.init = dvb_usb_tuner_init_i2c;
+                       d->fe->ops->tuner_ops.set_params = dvb_usb_tuner_set_params_i2c;
                        d->tuner_pass_ctrl = st->ops.tuner_pass_ctrl;
                        return 0;
                }