Lines Matching refs:dcur

213 	struct cx24117_tuning dcur;  member
880 state->dcur = state->dnxt; in cx24117_clone_params()
1423 "%s: delsys = %d\n", __func__, state->dcur.delsys); in cx24117_set_frontend()
1425 "%s: modulation = %d\n", __func__, state->dcur.modulation); in cx24117_set_frontend()
1427 "%s: frequency = %d\n", __func__, state->dcur.frequency); in cx24117_set_frontend()
1430 state->dcur.pilot, state->dcur.pilot_val); in cx24117_set_frontend()
1435 state->dcur.rolloff, state->dcur.rolloff_val); in cx24117_set_frontend()
1437 "%s: symbol_rate = %d\n", __func__, state->dcur.symbol_rate); in cx24117_set_frontend()
1440 state->dcur.fec, state->dcur.fec_mask, state->dcur.fec_val); in cx24117_set_frontend()
1443 state->dcur.inversion, state->dcur.inversion_val); in cx24117_set_frontend()
1452 cmd.args[2] = (state->dcur.frequency & 0xff0000) >> 16; in cx24117_set_frontend()
1453 cmd.args[3] = (state->dcur.frequency & 0x00ff00) >> 8; in cx24117_set_frontend()
1454 cmd.args[4] = (state->dcur.frequency & 0x0000ff); in cx24117_set_frontend()
1457 cmd.args[5] = ((state->dcur.symbol_rate / 1000) & 0xff00) >> 8; in cx24117_set_frontend()
1458 cmd.args[6] = ((state->dcur.symbol_rate / 1000) & 0x00ff); in cx24117_set_frontend()
1461 cmd.args[7] = state->dcur.inversion_val; in cx24117_set_frontend()
1464 cmd.args[8] = state->dcur.fec_val | state->dcur.pilot_val; in cx24117_set_frontend()
1469 cmd.args[11] = state->dcur.rolloff_val; in cx24117_set_frontend()
1470 cmd.args[12] = state->dcur.fec_mask; in cx24117_set_frontend()
1472 if (state->dcur.symbol_rate > 30000000) { in cx24117_set_frontend()
1475 } else if (state->dcur.symbol_rate > 10000000) { in cx24117_set_frontend()
1534 if (state->dcur.rolloff == 3) in cx24117_set_frontend()
1617 c->symbol_rate = -1000 * srate_os + state->dcur.symbol_rate; in cx24117_get_frontend()