t->priv = NULL;
 }
 
-static struct tuner_operations tda8290_tuner_ops = {
+static struct analog_tuner_ops tda8290_tuner_ops = {
        .set_tv_freq    = tda8290_set_freq,
        .set_radio_freq = tda8290_set_freq,
        .has_signal     = tda8290_has_signal,
        .release        = tda829x_release,
 };
 
-static struct tuner_operations tda8295_tuner_ops = {
+static struct analog_tuner_ops tda8295_tuner_ops = {
        .set_tv_freq    = tda8295_set_freq,
        .set_radio_freq = tda8295_set_freq,
        .has_signal     = tda8295_has_signal,
        if (t->fe.ops.tuner_ops.sleep)
                t->fe.ops.tuner_ops.sleep(&t->fe);
 
-       memcpy(&t->ops, &tda8290_tuner_ops, sizeof(struct tuner_operations));
+       t->fe.ops.analog_demod_ops = &tda8290_tuner_ops;
 
        tuner_info("type set to %s\n", t->i2c.name);
 
        priv->tda827x_ver |= 1; /* signifies 8295 vs 8290 */
        tuner_info("type set to %s\n", t->i2c.name);
 
-       memcpy(&t->ops, &tda8295_tuner_ops, sizeof(struct tuner_operations));
+       t->fe.ops.analog_demod_ops = &tda8295_tuner_ops;
 
        priv->cfg.tda827x_lpsel = 0;
        t->mode = V4L2_TUNER_ANALOG_TV;
 
        return strength;
 }
 
+static void tuner_status(struct tuner *t);
+
+static struct analog_tuner_ops tuner_core_ops = {
+       .set_tv_freq    = fe_set_freq,
+       .set_radio_freq = fe_set_freq,
+       .standby        = fe_standby,
+       .release        = fe_release,
+       .has_signal     = fe_has_signal,
+       .tuner_status   = tuner_status
+};
+
 /* Set tuner frequency,  freq in Units of 62.5kHz = 1/16MHz */
 static void set_tv_freq(struct i2c_client *c, unsigned int freq)
 {
        struct tuner *t = i2c_get_clientdata(c);
+       struct analog_tuner_ops *ops = t->fe.ops.analog_demod_ops;
 
        if (t->type == UNSET) {
                tuner_warn ("tuner type not set\n");
                return;
        }
-       if (NULL == t->ops.set_tv_freq) {
+       if ((NULL == ops) || (NULL == ops->set_tv_freq)) {
                tuner_warn ("Tuner has no way to set tv freq\n");
                return;
        }
                else
                        freq = tv_range[1] * 16;
        }
-       t->ops.set_tv_freq(t, freq);
+       ops->set_tv_freq(t, freq);
 }
 
 static void set_radio_freq(struct i2c_client *c, unsigned int freq)
 {
        struct tuner *t = i2c_get_clientdata(c);
+       struct analog_tuner_ops *ops = t->fe.ops.analog_demod_ops;
 
        if (t->type == UNSET) {
                tuner_warn ("tuner type not set\n");
                return;
        }
-       if (NULL == t->ops.set_radio_freq) {
+       if ((NULL == ops) || (NULL == ops->set_radio_freq)) {
                tuner_warn ("tuner has no way to set radio frequency\n");
                return;
        }
                        freq = radio_range[1] * 16000;
        }
 
-       t->ops.set_radio_freq(t, freq);
+       ops->set_radio_freq(t, freq);
 }
 
 static void set_freq(struct i2c_client *c, unsigned long freq)
 {
        struct tuner *t = i2c_get_clientdata(c);
        struct dvb_tuner_ops *fe_tuner_ops = &t->fe.ops.tuner_ops;
+       struct analog_tuner_ops *ops = t->fe.ops.analog_demod_ops;
        unsigned char buffer[4];
 
        if (type == UNSET || type == TUNER_ABSENT) {
        }
 
        /* discard private data, in case set_type() was previously called */
-       if (t->ops.release)
-               t->ops.release(t);
+       if ((ops) && (ops->release))
+               ops->release(t);
        else {
                kfree(t->priv);
                t->priv = NULL;
                break;
        }
 
-       if ((fe_tuner_ops->set_analog_params) &&
-           ((NULL == t->ops.set_tv_freq) && (NULL == t->ops.set_radio_freq))) {
+       if (((NULL == ops) ||
+            ((NULL == ops->set_tv_freq) && (NULL == ops->set_radio_freq))) &&
+           (fe_tuner_ops->set_analog_params)) {
                strlcpy(t->i2c.name, fe_tuner_ops->info.name, sizeof(t->i2c.name));
 
-               t->ops.set_tv_freq    = fe_set_freq;
-               t->ops.set_radio_freq = fe_set_freq;
-               t->ops.standby        = fe_standby;
-               t->ops.release        = fe_release;
-               t->ops.has_signal     = fe_has_signal;
+               t->fe.ops.analog_demod_ops = &tuner_core_ops;
        }
 
        tuner_info("type set to %s\n", t->i2c.name);
 {
        unsigned long freq, freq_fraction;
        struct dvb_tuner_ops *fe_tuner_ops = &t->fe.ops.tuner_ops;
+       struct analog_tuner_ops *ops = t->fe.ops.analog_demod_ops;
        const char *p;
 
        switch (t->mode) {
                if (tuner_status & TUNER_STATUS_STEREO)
                        tuner_info("Stereo:          yes\n");
        }
-       if (t->ops.has_signal) {
-               tuner_info("Signal strength: %d\n", t->ops.has_signal(t));
+       if ((ops) && (ops->has_signal)) {
+               tuner_info("Signal strength: %d\n", ops->has_signal(t));
        }
-       if (t->ops.is_stereo) {
-               tuner_info("Stereo:          %s\n", t->ops.is_stereo(t) ? "yes" : "no");
+       if ((ops) && (ops->is_stereo)) {
+               tuner_info("Stereo:          %s\n", ops->is_stereo(t) ? "yes" : "no");
        }
 }
 
        t->type = UNSET;
        t->audmode = V4L2_TUNER_MODE_STEREO;
        t->mode_mask = T_UNINITIALIZED;
-       t->ops.tuner_status = tuner_status;
 
        if (show_i2c) {
                unsigned char buffer[16];
 static int tuner_detach(struct i2c_client *client)
 {
        struct tuner *t = i2c_get_clientdata(client);
+       struct analog_tuner_ops *ops = t->fe.ops.analog_demod_ops;
        int err;
 
        err = i2c_detach_client(&t->i2c);
                return err;
        }
 
-       if (t->ops.release)
-               t->ops.release(t);
+       if ((ops) && (ops->release))
+               ops->release(t);
        else {
                kfree(t->priv);
        }
 
 static inline int set_mode(struct i2c_client *client, struct tuner *t, int mode, char *cmd)
 {
+       struct analog_tuner_ops *ops = t->fe.ops.analog_demod_ops;
+
        if (mode == t->mode)
                return 0;
 
 
        if (check_mode(t, cmd) == EINVAL) {
                t->mode = T_STANDBY;
-               if (t->ops.standby)
-                       t->ops.standby(t);
+               if ((ops) && (ops->standby))
+                       ops->standby(t);
                return EINVAL;
        }
        return 0;
 {
        struct tuner *t = i2c_get_clientdata(client);
        struct dvb_tuner_ops *fe_tuner_ops = &t->fe.ops.tuner_ops;
+       struct analog_tuner_ops *ops = t->fe.ops.analog_demod_ops;
 
        if (tuner_debug>1)
                v4l_i2c_print_ioctl(&(t->i2c),cmd);
                if (check_mode(t, "TUNER_SET_STANDBY") == EINVAL)
                        return 0;
                t->mode = T_STANDBY;
-               if (t->ops.standby)
-                       t->ops.standby(t);
+               if ((ops) && (ops->standby))
+                       ops->standby(t);
                break;
 #ifdef CONFIG_VIDEO_V4L1
        case VIDIOCSAUDIO:
                                        else
                                                vt->flags &= ~VIDEO_TUNER_STEREO_ON;
                                } else {
-                                       if (t->ops.is_stereo) {
-                                               if (t->ops.is_stereo(t))
+                                       if ((ops) && (ops->is_stereo)) {
+                                               if (ops->is_stereo(t))
                                                        vt->flags |=
                                                                VIDEO_TUNER_STEREO_ON;
                                                else
                                                                ~VIDEO_TUNER_STEREO_ON;
                                        }
                                }
-                               if (t->ops.has_signal)
-                                       vt->signal = t->ops.has_signal(t);
+                               if ((ops) && (ops->has_signal))
+                                       vt->signal = ops->has_signal(t);
 
                                vt->flags |= VIDEO_TUNER_LOW;   /* Allow freqs at 62.5 Hz */
 
                                        fe_tuner_ops->get_status(&t->fe, &tuner_status);
                                        va->mode = (tuner_status & TUNER_STATUS_STEREO)
                                            ? VIDEO_SOUND_STEREO : VIDEO_SOUND_MONO;
-                               } else if (t->ops.is_stereo)
-                                       va->mode = t->ops.is_stereo(t)
+                               } else if ((ops) && (ops->is_stereo))
+                                       va->mode = ops->is_stereo(t)
                                            ? VIDEO_SOUND_STEREO : VIDEO_SOUND_MONO;
                        }
                        return 0;
                        switch_v4l2();
 
                        tuner->type = t->mode;
-                       if (t->ops.get_afc)
-                               tuner->afc=t->ops.get_afc(t);
+                       if ((ops) && (ops->get_afc))
+                               tuner->afc = ops->get_afc(t);
                        if (t->mode == V4L2_TUNER_ANALOG_TV)
                                tuner->capability |= V4L2_TUNER_CAP_NORM;
                        if (t->mode != V4L2_TUNER_RADIO) {
                                tuner->rxsubchans = (tuner_status & TUNER_STATUS_STEREO) ?
                                        V4L2_TUNER_SUB_STEREO : V4L2_TUNER_SUB_MONO;
                        } else {
-                               if (t->ops.is_stereo) {
-                                       tuner->rxsubchans = t->ops.is_stereo(t) ?
+                               if ((ops) && (ops->is_stereo)) {
+                                       tuner->rxsubchans = ops->is_stereo(t) ?
                                                V4L2_TUNER_SUB_STEREO : V4L2_TUNER_SUB_MONO;
                                }
                        }
-                       if (t->ops.has_signal)
-                               tuner->signal = t->ops.has_signal(t);
+                       if ((ops) && (ops->has_signal))
+                               tuner->signal = ops->has_signal(t);
                        tuner->capability |=
                            V4L2_TUNER_CAP_LOW | V4L2_TUNER_CAP_STEREO;
                        tuner->audmode = t->audmode;
                        break;
                }
        case VIDIOC_LOG_STATUS:
-               if (t->ops.tuner_status)
-                       t->ops.tuner_status(t);
+               if ((ops) && (ops->tuner_status))
+                       ops->tuner_status(t);
                break;
        }