Lines Matching refs:dcur

179 	struct cx24116_tuning dcur;  member
813 state->dcur = state->dnxt; in cx24116_clone_params()
1316 dprintk("%s: delsys = %d\n", __func__, state->dcur.delsys); in cx24116_set_frontend()
1317 dprintk("%s: modulation = %d\n", __func__, state->dcur.modulation); in cx24116_set_frontend()
1318 dprintk("%s: frequency = %d\n", __func__, state->dcur.frequency); in cx24116_set_frontend()
1320 state->dcur.pilot, state->dcur.pilot_val); in cx24116_set_frontend()
1323 state->dcur.rolloff, state->dcur.rolloff_val); in cx24116_set_frontend()
1324 dprintk("%s: symbol_rate = %d\n", __func__, state->dcur.symbol_rate); in cx24116_set_frontend()
1326 state->dcur.fec, state->dcur.fec_mask, state->dcur.fec_val); in cx24116_set_frontend()
1328 state->dcur.inversion, state->dcur.inversion_val); in cx24116_set_frontend()
1346 cmd.args[0x01] = (state->dcur.frequency & 0xff0000) >> 16; in cx24116_set_frontend()
1347 cmd.args[0x02] = (state->dcur.frequency & 0x00ff00) >> 8; in cx24116_set_frontend()
1348 cmd.args[0x03] = (state->dcur.frequency & 0x0000ff); in cx24116_set_frontend()
1351 cmd.args[0x04] = ((state->dcur.symbol_rate / 1000) & 0xff00) >> 8; in cx24116_set_frontend()
1352 cmd.args[0x05] = ((state->dcur.symbol_rate / 1000) & 0x00ff); in cx24116_set_frontend()
1355 cmd.args[0x06] = state->dcur.inversion_val; in cx24116_set_frontend()
1358 cmd.args[0x07] = state->dcur.fec_val | state->dcur.pilot_val; in cx24116_set_frontend()
1364 cmd.args[0x0c] = state->dcur.rolloff_val; in cx24116_set_frontend()
1365 cmd.args[0x0d] = state->dcur.fec_mask; in cx24116_set_frontend()
1367 if (state->dcur.symbol_rate > 30000000) { in cx24116_set_frontend()
1421 if (state->dcur.pilot == PILOT_AUTO) in cx24116_set_frontend()