Lines Matching refs:dcur

201 	struct cx24117_tuning dcur;  member
870 state->dcur = state->dnxt; in cx24117_clone_params()
1412 "%s: delsys = %d\n", __func__, state->dcur.delsys); in cx24117_set_frontend()
1414 "%s: modulation = %d\n", __func__, state->dcur.modulation); in cx24117_set_frontend()
1416 "%s: frequency = %d\n", __func__, state->dcur.frequency); in cx24117_set_frontend()
1419 state->dcur.pilot, state->dcur.pilot_val); in cx24117_set_frontend()
1424 state->dcur.rolloff, state->dcur.rolloff_val); in cx24117_set_frontend()
1426 "%s: symbol_rate = %d\n", __func__, state->dcur.symbol_rate); in cx24117_set_frontend()
1429 state->dcur.fec, state->dcur.fec_mask, state->dcur.fec_val); in cx24117_set_frontend()
1432 state->dcur.inversion, state->dcur.inversion_val); in cx24117_set_frontend()
1441 cmd.args[2] = (state->dcur.frequency & 0xff0000) >> 16; in cx24117_set_frontend()
1442 cmd.args[3] = (state->dcur.frequency & 0x00ff00) >> 8; in cx24117_set_frontend()
1443 cmd.args[4] = (state->dcur.frequency & 0x0000ff); in cx24117_set_frontend()
1446 cmd.args[5] = ((state->dcur.symbol_rate / 1000) & 0xff00) >> 8; in cx24117_set_frontend()
1447 cmd.args[6] = ((state->dcur.symbol_rate / 1000) & 0x00ff); in cx24117_set_frontend()
1450 cmd.args[7] = state->dcur.inversion_val; in cx24117_set_frontend()
1453 cmd.args[8] = state->dcur.fec_val | state->dcur.pilot_val; in cx24117_set_frontend()
1458 cmd.args[11] = state->dcur.rolloff_val; in cx24117_set_frontend()
1459 cmd.args[12] = state->dcur.fec_mask; in cx24117_set_frontend()
1461 if (state->dcur.symbol_rate > 30000000) { in cx24117_set_frontend()
1464 } else if (state->dcur.symbol_rate > 10000000) { in cx24117_set_frontend()
1523 if (state->dcur.rolloff == 3) in cx24117_set_frontend()
1606 c->symbol_rate = -1000 * srate_os + state->dcur.symbol_rate; in cx24117_get_frontend()