Lines Matching defs:config
19 const struct tda665x_config *config;
27 const struct tda665x_config *config = state->config;
29 struct i2c_msg msg = { .addr = config->addr, .flags = I2C_M_RD, .buf = buf, .len = 2 };
43 const struct tda665x_config *config = state->config;
45 struct i2c_msg msg = { .addr = config->addr, .flags = 0, .buf = buf, .len = length };
93 const struct tda665x_config *config = state->config;
98 if ((new_frequency < config->frequency_max)
99 || (new_frequency > config->frequency_min)) {
107 frequency += config->frequency_offst;
108 frequency *= config->ref_multiplier;
109 frequency += config->ref_divider >> 1;
110 frequency /= config->ref_divider;
204 const struct tda665x_config *config,
214 state->config = config;
221 memcpy(info->name, config->name, sizeof(config->name));
222 info->frequency_min_hz = config->frequency_min;
223 info->frequency_max_hz = config->frequency_max;
224 info->frequency_step_hz = config->frequency_offst;