Lines Matching defs:tmp
179 u8 tmp;
182 status = read_reg(state, reg, &tmp);
184 status = write_reg(state, reg, (tmp & ~mask) | (val & mask));
503 u8 tmp;
509 read_reg(state, RSTV0910_P2_DMDMODCOD + state->regoff, &tmp);
510 state->mod_cod = (enum fe_stv0910_mod_cod)((tmp & 0x7c) >> 2);
511 state->pilots = (tmp & 0x01) != 0;
512 state->fectype = (enum dvbs2_fectype)((tmp & 0x02) >> 1);
515 read_reg(state, RSTV0910_P2_VITCURPUN + state->regoff, &tmp);
517 switch (tmp & 0x1F) {
543 u8 tmp;
545 read_reg(state, RSTV0910_P2_DMDCFGMD + state->regoff, &tmp);
546 tmp &= ~0xC0;
550 tmp |= 0x40;
553 tmp |= 0x80;
556 tmp |= 0xC0;
559 write_reg(state, RSTV0910_P2_DMDCFGMD + state->regoff, tmp);
858 u8 tmp;
862 read_reg(state, RSTV0910_P2_PDELCTRL1 + state->regoff, &tmp);
863 tmp &= ~0x01; /* release reset DVBS2 packet delin */
864 write_reg(state, RSTV0910_P2_PDELCTRL1 + state->regoff, tmp);
989 u8 tmp[2];
992 tmp, 2);
993 u16 reg_value = (tmp[0] << 8) | tmp[1];
1444 u8 tmp;
1461 &tmp);
1463 tmp |= 0x40;
1466 tmp);
1468 tmp &= ~0x40;
1471 tmp);
1507 u8 tmp;
1511 &tmp);
1512 mod_cod = (enum fe_stv0910_mod_cod)((tmp & 0x7c) >> 2);
1545 u8 tmp;
1570 read_reg(state, RSTV0910_P2_DMDMODCOD + state->regoff, &tmp);
1571 mc = ((tmp & 0x7c) >> 2);
1572 p->pilot = (tmp & 0x01) ? PILOT_ON : PILOT_OFF;
1576 read_reg(state, RSTV0910_P2_VITCURPUN + state->regoff, &tmp);
1577 switch (tmp & 0x1F) {