Lines Matching refs:bitshift
119 u32 returnvalue, originalvalue, bitshift; in rtl8821ae_phy_query_bb_reg() local
125 bitshift = _rtl8821ae_phy_calculate_bit_shift(bitmask); in rtl8821ae_phy_query_bb_reg()
126 returnvalue = (originalvalue & bitmask) >> bitshift; in rtl8821ae_phy_query_bb_reg()
138 u32 originalvalue, bitshift; in rtl8821ae_phy_set_bb_reg() local
146 bitshift = _rtl8821ae_phy_calculate_bit_shift(bitmask); in rtl8821ae_phy_set_bb_reg()
148 ((data << bitshift) & bitmask)); in rtl8821ae_phy_set_bb_reg()
163 u32 original_value, readback_value, bitshift; in rtl8821ae_phy_query_rf_reg() local
173 bitshift = _rtl8821ae_phy_calculate_bit_shift(bitmask); in rtl8821ae_phy_query_rf_reg()
174 readback_value = (original_value & bitmask) >> bitshift; in rtl8821ae_phy_query_rf_reg()
190 u32 original_value, bitshift; in rtl8821ae_phy_set_rf_reg() local
202 bitshift = _rtl8821ae_phy_calculate_bit_shift(bitmask); in rtl8821ae_phy_set_rf_reg()
203 data = ((original_value & (~bitmask)) | (data << bitshift)); in rtl8821ae_phy_set_rf_reg()