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