Lines Matching refs:config
32 const struct tda8261_config *config; member
41 const struct tda8261_config *config = state->config; in tda8261_read() local
43 struct i2c_msg msg = { .addr = config->addr, .flags = I2C_M_RD,.buf = buf, .len = 1 }; in tda8261_read()
53 const struct tda8261_config *config = state->config; in tda8261_write() local
55 struct i2c_msg msg = { .addr = config->addr, .flags = 0, .buf = buf, .len = 4 }; in tda8261_write()
114 const struct tda8261_config *config = state->config; in tda8261_set_state() local
130 N = (frequency + (div_tab[config->step_size] - 1)) / div_tab[config->step_size]; in tda8261_set_state()
132 __func__, config->step_size, div_tab[config->step_size], N, N); in tda8261_set_state()
136 buf[2] = (0x01 << 7) | ((ref_div[config->step_size] & 0x07) << 1); in tda8261_set_state()
198 const struct tda8261_config *config, in tda8261_attach() argument
206 state->config = config; in tda8261_attach()
212 fe->ops.tuner_ops.info.frequency_step = div_tab[config->step_size]; in tda8261_attach()