• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/media/dvb/frontends/

Lines Matching defs:config

58 	const struct stv0299_config* config;
84 struct i2c_msg msg = { .addr = state->config->demod_address, .flags = 0, .buf = buf, .len = 2 };
110 struct i2c_msg msg [] = { { .addr = state->config->demod_address, .flags = 0, .buf = b0, .len = 1 },
111 { .addr = state->config->demod_address, .flags = I2C_M_RD, .buf = b1, .len = 1 } };
125 struct i2c_msg msg [] = { { .addr = state->config->demod_address, .flags = 0, .buf = &reg1, .len = 1 },
126 { .addr = state->config->demod_address, .flags = I2C_M_RD, .buf = b, .len = len } };
234 big += (state->config->mclk-1); // round correctly
235 do_div(big, state->config->mclk);
238 return state->config->set_symbol_rate(fe, srate, ratio);
243 u32 Mclk = state->config->mclk / 4096L;
370 reg0x08 = (reg0x08 & 0x3f) | (state->config->lock_output << 6);
374 if (state->config->volt13_op0_op1 == STV0299_VOLT13_OP0)
391 if (state->config->op0_off)
412 stv0299_writeregI (state, 0x08, (reg0x08 & 0x3f) | (state->config->lock_output << 6));
413 if (state->config->volt13_op0_op1 == STV0299_VOLT13_OP0)
461 reg = state->config->inittab[i];
462 val = state->config->inittab[i+1];
465 if (reg == 0x0c && state->config->op0_off)
562 if (state->config->set_ts_params)
563 state->config->set_ts_params(fe, 0);
572 if (state->config->invert) invval = (~invval) & 1;
601 derot_freq *= (state->config->mclk >> 16);
608 if (state->config->invert) invval = (~invval) & 1;
644 fesettings->min_delay_ms = state->config->min_delay_ms;
663 struct dvb_frontend* stv0299_attach(const struct stv0299_config* config,
674 state->config = config;