tda827x.c (0337966d121ebebf73a1c346123e8112796e684e) tda827x.c (a3f90c75b833caeff123499e13e0e31cbecf7d5b)
1/*
2 *
3 * (c) 2005 Hartmut Hackmann
4 * (c) 2007 Michael Krufky
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or

--- 802 unchanged lines hidden (view full) ---

811 if (ret)
812 return ret;
813 return fe->ops.tuner_ops.sleep(fe);
814}
815
816static const struct dvb_tuner_ops tda827xo_tuner_ops = {
817 .info = {
818 .name = "Philips TDA827X",
1/*
2 *
3 * (c) 2005 Hartmut Hackmann
4 * (c) 2007 Michael Krufky
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or

--- 802 unchanged lines hidden (view full) ---

811 if (ret)
812 return ret;
813 return fe->ops.tuner_ops.sleep(fe);
814}
815
816static const struct dvb_tuner_ops tda827xo_tuner_ops = {
817 .info = {
818 .name = "Philips TDA827X",
819 .frequency_min = 55000000,
820 .frequency_max = 860000000,
821 .frequency_step = 250000
819 .frequency_min_hz = 55 * MHz,
820 .frequency_max_hz = 860 * MHz,
821 .frequency_step_hz = 250 * kHz
822 },
823 .release = tda827x_release,
824 .init = tda827x_initial_init,
825 .sleep = tda827x_initial_sleep,
826 .set_params = tda827xo_set_params,
827 .set_analog_params = tda827xo_set_analog_params,
828 .get_frequency = tda827x_get_frequency,
829 .get_bandwidth = tda827x_get_bandwidth,
830};
831
832static const struct dvb_tuner_ops tda827xa_tuner_ops = {
833 .info = {
834 .name = "Philips TDA827XA",
822 },
823 .release = tda827x_release,
824 .init = tda827x_initial_init,
825 .sleep = tda827x_initial_sleep,
826 .set_params = tda827xo_set_params,
827 .set_analog_params = tda827xo_set_analog_params,
828 .get_frequency = tda827x_get_frequency,
829 .get_bandwidth = tda827x_get_bandwidth,
830};
831
832static const struct dvb_tuner_ops tda827xa_tuner_ops = {
833 .info = {
834 .name = "Philips TDA827XA",
835 .frequency_min = 44000000,
836 .frequency_max = 906000000,
837 .frequency_step = 62500
835 .frequency_min_hz = 44 * MHz,
836 .frequency_max_hz = 906 * MHz,
837 .frequency_step_hz = 62500
838 },
839 .release = tda827x_release,
840 .init = tda827x_init,
841 .sleep = tda827xa_sleep,
842 .set_params = tda827xa_set_params,
843 .set_analog_params = tda827xa_set_analog_params,
844 .get_frequency = tda827x_get_frequency,
845 .get_bandwidth = tda827x_get_bandwidth,

--- 59 unchanged lines hidden ---
838 },
839 .release = tda827x_release,
840 .init = tda827x_init,
841 .sleep = tda827xa_sleep,
842 .set_params = tda827xa_set_params,
843 .set_analog_params = tda827xa_set_analog_params,
844 .get_frequency = tda827x_get_frequency,
845 .get_bandwidth = tda827x_get_bandwidth,

--- 59 unchanged lines hidden ---