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