Lines Matching refs:temp1
73 u8 temp0, temp1; in af9005_read_word_agc() local
77 if ((ret = af9005_read_ofdm_register(d, reghi, &temp1))) in af9005_read_word_agc()
81 *value = ((u16) (temp1 & 0x03) << 8) + (u16) temp0; in af9005_read_word_agc()
84 *value = ((u16) (temp1 & 0x0C) << 6) + (u16) temp0; in af9005_read_word_agc()
87 *value = ((u16) (temp1 & 0x30) << 4) + (u16) temp0; in af9005_read_word_agc()
90 *value = ((u16) (temp1 & 0xC0) << 2) + (u16) temp0; in af9005_read_word_agc()
137 u8 temp, temp0, temp1, temp2; in af9005_get_post_vit_err_cw_count() local
164 &temp1); in af9005_get_post_vit_err_cw_count()
167 loc_abort_count = ((u16) temp1 << 8) + temp0; in af9005_get_post_vit_err_cw_count()
177 &temp1); in af9005_get_post_vit_err_cw_count()
185 err_count = ((u32) temp2 << 16) + ((u32) temp1 << 8) + temp0; in af9005_get_post_vit_err_cw_count()
196 &temp1); in af9005_get_post_vit_err_cw_count()
199 cw_count = ((u32) temp1 << 8) + temp0; in af9005_get_post_vit_err_cw_count()
237 u8 temp, temp0, temp1, temp2; in af9005_get_pre_vit_err_bit_count() local
258 &temp1); in af9005_get_pre_vit_err_bit_count()
266 *pre_err_count = ((u32) temp2 << 16) + ((u32) temp1 << 8) + temp0; in af9005_get_pre_vit_err_bit_count()
275 &temp1); in af9005_get_pre_vit_err_bit_count()
278 super_frame_count = ((u32) temp1 << 8) + temp0; in af9005_get_pre_vit_err_bit_count()
541 u8 temp0, temp1, temp2, temp3, buf[4]; in af9005_fe_program_cfoe() local
587 temp1 = (u8) ((NS_coeff1_2048Nu & 0x0000FF00) >> 8); in af9005_fe_program_cfoe()
594 buf[2] = temp1; in af9005_fe_program_cfoe()
622 temp1 = (u8) ((NS_coeff2_2k & 0x00003FC0) >> 6); in af9005_fe_program_cfoe()
629 buf[2] = temp1; in af9005_fe_program_cfoe()
653 temp1 = (u8) ((NS_coeff1_8191Nu & 0x0000FF00) >> 8); in af9005_fe_program_cfoe()
660 buf[2] = temp1; in af9005_fe_program_cfoe()
684 temp1 = (u8) ((NS_coeff1_8192Nu & 0x0000FF00) >> 8); in af9005_fe_program_cfoe()
691 buf[2] = temp1; in af9005_fe_program_cfoe()
715 temp1 = (u8) ((NS_coeff1_8193Nu & 0x0000FF00) >> 8); in af9005_fe_program_cfoe()
722 buf[2] = temp1; in af9005_fe_program_cfoe()
746 temp1 = (u8) ((NS_coeff2_8k & 0x00003FC0) >> 6); in af9005_fe_program_cfoe()
753 buf[2] = temp1; in af9005_fe_program_cfoe()
817 u8 temp, temp0 = 0, temp1 = 0, temp2 = 0; in af9005_fe_init() local
981 temp1 = script[i].val; in af9005_fe_init()
997 ((u32) temp2 << 16) + ((u32) temp1 << 8) + (u32) temp0; in af9005_fe_init()
1105 u8 temp, temp0, temp1, temp2; in af9005_fe_set_frontend() local
1127 temp1 = (u8) ((state->original_fcw & 0x0000ff00) >> 8); in af9005_fe_set_frontend()
1132 ret = af9005_write_ofdm_register(state->d, 0xae19, temp1); in af9005_fe_set_frontend()