mirror of https://gitee.com/openkylin/linux.git
[media] dib0700: better document struct init
Instead of using anonymous initialization for dib0896 structs, identify each field by name. That helps to understand what's being initialized. No functional changes. Acked-By: Patrick Boettcher <pboettcher@kernellabs.com> Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
This commit is contained in:
parent
6d38454a59
commit
40d1a7c3de
|
@ -1412,99 +1412,113 @@ static int stk807xpvr_frontend_attach1(struct dvb_usb_adapter *adap)
|
||||||
/* STK8096GP */
|
/* STK8096GP */
|
||||||
static struct dibx000_agc_config dib8090_agc_config[2] = {
|
static struct dibx000_agc_config dib8090_agc_config[2] = {
|
||||||
{
|
{
|
||||||
BAND_UHF | BAND_VHF | BAND_LBAND | BAND_SBAND,
|
.band_caps = BAND_UHF | BAND_VHF | BAND_LBAND | BAND_SBAND,
|
||||||
/* P_agc_use_sd_mod1=0, P_agc_use_sd_mod2=0, P_agc_freq_pwm_div=1,
|
/* P_agc_use_sd_mod1=0, P_agc_use_sd_mod2=0, P_agc_freq_pwm_div=1,
|
||||||
* P_agc_inv_pwm1=0, P_agc_inv_pwm2=0, P_agc_inh_dc_rv_est=0,
|
* P_agc_inv_pwm1=0, P_agc_inv_pwm2=0, P_agc_inh_dc_rv_est=0,
|
||||||
* P_agc_time_est=3, P_agc_freeze=0, P_agc_nb_est=5, P_agc_write=0 */
|
* P_agc_time_est=3, P_agc_freeze=0, P_agc_nb_est=5, P_agc_write=0 */
|
||||||
(0 << 15) | (0 << 14) | (5 << 11) | (0 << 10) | (0 << 9) | (0 << 8)
|
.setup = (0 << 15) | (0 << 14) | (5 << 11) | (0 << 10) | (0 << 9) | (0 << 8)
|
||||||
| (3 << 5) | (0 << 4) | (5 << 1) | (0 << 0),
|
| (3 << 5) | (0 << 4) | (5 << 1) | (0 << 0),
|
||||||
|
|
||||||
787,
|
.inv_gain = 787,
|
||||||
10,
|
.time_stabiliz = 10,
|
||||||
|
|
||||||
0,
|
.alpha_level = 0,
|
||||||
118,
|
.thlock = 118,
|
||||||
|
|
||||||
0,
|
.wbd_inv = 0,
|
||||||
3530,
|
.wbd_ref = 3530,
|
||||||
1,
|
.wbd_sel = 1,
|
||||||
5,
|
.wbd_alpha = 5,
|
||||||
|
|
||||||
65535,
|
.agc1_max = 65535,
|
||||||
0,
|
.agc1_min = 0,
|
||||||
|
|
||||||
65535,
|
.agc2_max = 65535,
|
||||||
0,
|
.agc2_min = 0,
|
||||||
|
|
||||||
0,
|
.agc1_pt1 = 0,
|
||||||
32,
|
.agc1_pt2 = 32,
|
||||||
114,
|
.agc1_pt3 = 114,
|
||||||
143,
|
.agc1_slope1 = 143,
|
||||||
144,
|
.agc1_slope2 = 144,
|
||||||
114,
|
.agc2_pt1 = 114,
|
||||||
227,
|
.agc2_pt2 = 227,
|
||||||
116,
|
.agc2_slope1 = 116,
|
||||||
117,
|
.agc2_slope2 = 117,
|
||||||
|
|
||||||
28,
|
.alpha_mant = 28,
|
||||||
26,
|
.alpha_exp = 26,
|
||||||
31,
|
.beta_mant = 31,
|
||||||
51,
|
.beta_exp = 51,
|
||||||
|
|
||||||
0,
|
.perform_agc_softsplit = 0,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
BAND_CBAND,
|
.band_caps = BAND_CBAND,
|
||||||
/* P_agc_use_sd_mod1=0, P_agc_use_sd_mod2=0, P_agc_freq_pwm_div=1,
|
/* P_agc_use_sd_mod1=0, P_agc_use_sd_mod2=0, P_agc_freq_pwm_div=1,
|
||||||
* P_agc_inv_pwm1=0, P_agc_inv_pwm2=0, P_agc_inh_dc_rv_est=0,
|
* P_agc_inv_pwm1=0, P_agc_inv_pwm2=0, P_agc_inh_dc_rv_est=0,
|
||||||
* P_agc_time_est=3, P_agc_freeze=0, P_agc_nb_est=5, P_agc_write=0 */
|
* P_agc_time_est=3, P_agc_freeze=0, P_agc_nb_est=5, P_agc_write=0 */
|
||||||
(0 << 15) | (0 << 14) | (5 << 11) | (0 << 10) | (0 << 9) | (0 << 8)
|
.setup = (0 << 15) | (0 << 14) | (5 << 11) | (0 << 10) | (0 << 9) | (0 << 8)
|
||||||
| (3 << 5) | (0 << 4) | (5 << 1) | (0 << 0),
|
| (3 << 5) | (0 << 4) | (5 << 1) | (0 << 0),
|
||||||
|
|
||||||
787,
|
.inv_gain = 787,
|
||||||
10,
|
.time_stabiliz = 10,
|
||||||
|
|
||||||
0,
|
.alpha_level = 0,
|
||||||
118,
|
.thlock = 118,
|
||||||
|
|
||||||
0,
|
.wbd_inv = 0,
|
||||||
3530,
|
.wbd_ref = 3530,
|
||||||
1,
|
.wbd_sel = 1,
|
||||||
5,
|
.wbd_alpha = 5,
|
||||||
|
|
||||||
0,
|
.agc1_max = 0,
|
||||||
0,
|
.agc1_min = 0,
|
||||||
|
|
||||||
65535,
|
.agc2_max = 65535,
|
||||||
0,
|
.agc2_min = 0,
|
||||||
|
|
||||||
0,
|
.agc1_pt1 = 0,
|
||||||
32,
|
.agc1_pt2 = 32,
|
||||||
114,
|
.agc1_pt3 = 114,
|
||||||
143,
|
.agc1_slope1 = 143,
|
||||||
144,
|
.agc1_slope2 = 144,
|
||||||
114,
|
.agc2_pt1 = 114,
|
||||||
227,
|
.agc2_pt2 = 227,
|
||||||
116,
|
.agc2_slope1 = 116,
|
||||||
117,
|
.agc2_slope2 = 117,
|
||||||
|
|
||||||
28,
|
.alpha_mant = 28,
|
||||||
26,
|
.alpha_exp = 26,
|
||||||
31,
|
.beta_mant = 31,
|
||||||
51,
|
.beta_exp = 51,
|
||||||
|
|
||||||
0,
|
.perform_agc_softsplit = 0,
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct dibx000_bandwidth_config dib8090_pll_config_12mhz = {
|
static struct dibx000_bandwidth_config dib8090_pll_config_12mhz = {
|
||||||
54000, 13500,
|
.internal = 54000,
|
||||||
1, 18, 3, 1, 0,
|
.sampling = 13500,
|
||||||
0, 0, 1, 1, 2,
|
|
||||||
(3 << 14) | (1 << 12) | (599 << 0),
|
.pll_prediv = 1,
|
||||||
(0 << 25) | 0,
|
.pll_ratio = 18,
|
||||||
20199727,
|
.pll_range = 3,
|
||||||
12000000,
|
.pll_reset = 1,
|
||||||
|
.pll_bypass = 0,
|
||||||
|
|
||||||
|
.enable_refdiv = 0,
|
||||||
|
.bypclk_div = 0,
|
||||||
|
.IO_CLK_en_core = 1,
|
||||||
|
.ADClkSrc = 1,
|
||||||
|
.modulo = 2,
|
||||||
|
|
||||||
|
.sad_cfg = (3 << 14) | (1 << 12) | (599 << 0),
|
||||||
|
|
||||||
|
.ifreq = (0 << 25) | 0,
|
||||||
|
.timf = 20199727,
|
||||||
|
|
||||||
|
.xtal_hz = 12000000,
|
||||||
};
|
};
|
||||||
|
|
||||||
static int dib8090_get_adc_power(struct dvb_frontend *fe)
|
static int dib8090_get_adc_power(struct dvb_frontend *fe)
|
||||||
|
|
Loading…
Reference in New Issue