• Home
  • Raw
  • Download

Lines Matching refs:dcur

201 	struct cx24117_tuning dcur;  member
870 state->dcur = state->dnxt; in cx24117_clone_params()
1413 "%s: delsys = %d\n", __func__, state->dcur.delsys); in cx24117_set_frontend()
1415 "%s: modulation = %d\n", __func__, state->dcur.modulation); in cx24117_set_frontend()
1417 "%s: frequency = %d\n", __func__, state->dcur.frequency); in cx24117_set_frontend()
1420 state->dcur.pilot, state->dcur.pilot_val); in cx24117_set_frontend()
1425 state->dcur.rolloff, state->dcur.rolloff_val); in cx24117_set_frontend()
1427 "%s: symbol_rate = %d\n", __func__, state->dcur.symbol_rate); in cx24117_set_frontend()
1430 state->dcur.fec, state->dcur.fec_mask, state->dcur.fec_val); in cx24117_set_frontend()
1433 state->dcur.inversion, state->dcur.inversion_val); in cx24117_set_frontend()
1442 cmd.args[2] = (state->dcur.frequency & 0xff0000) >> 16; in cx24117_set_frontend()
1443 cmd.args[3] = (state->dcur.frequency & 0x00ff00) >> 8; in cx24117_set_frontend()
1444 cmd.args[4] = (state->dcur.frequency & 0x0000ff); in cx24117_set_frontend()
1447 cmd.args[5] = ((state->dcur.symbol_rate / 1000) & 0xff00) >> 8; in cx24117_set_frontend()
1448 cmd.args[6] = ((state->dcur.symbol_rate / 1000) & 0x00ff); in cx24117_set_frontend()
1451 cmd.args[7] = state->dcur.inversion_val; in cx24117_set_frontend()
1454 cmd.args[8] = state->dcur.fec_val | state->dcur.pilot_val; in cx24117_set_frontend()
1459 cmd.args[11] = state->dcur.rolloff_val; in cx24117_set_frontend()
1460 cmd.args[12] = state->dcur.fec_mask; in cx24117_set_frontend()
1462 if (state->dcur.symbol_rate > 30000000) { in cx24117_set_frontend()
1465 } else if (state->dcur.symbol_rate > 10000000) { in cx24117_set_frontend()
1524 if (state->dcur.rolloff == 3) in cx24117_set_frontend()
1607 c->symbol_rate = -1000 * srate_os + state->dcur.symbol_rate; in cx24117_get_frontend()