Searched refs:crc_result (Results 1 - 3 of 3) sorted by relevance

/linux-master/drivers/net/wireless/realtek/rtw89/
H A Dwow.c138 u16 crc_result; local
146 crc_result = crc << 1;
149 crc_result &= ~BIT(0);
151 crc_result |= BIT(0);
156 crc_result &= ~BIT(12);
158 crc_result |= BIT(12);
163 crc_result &= ~BIT(5);
165 crc_result |= BIT(5);
167 crc = crc_result;
/linux-master/drivers/net/wireless/realtek/rtw88/
H A Dwow.c116 u16 crc_result; local
124 crc_result = crc << 1;
127 crc_result &= (~BIT(0));
129 crc_result |= BIT(0);
134 crc_result &= (~BIT(12));
136 crc_result |= BIT(12);
141 crc_result &= (~BIT(5));
143 crc_result |= BIT(5);
145 crc = crc_result;
/linux-master/drivers/net/ethernet/marvell/
H A Dmvneta.c3142 unsigned char crc_result = 0; local
3149 crc_result = mvneta_addr_crc(p_addr);
3151 if (pp->mcast_count[crc_result] == 0) {
3153 crc_result);
3157 pp->mcast_count[crc_result]--;
3158 if (pp->mcast_count[crc_result] != 0) {
3161 pp->mcast_count[crc_result], crc_result);
3165 pp->mcast_count[crc_result]++;
3167 mvneta_set_other_mcast_addr(pp, crc_result, queu
[all...]

Completed in 121 milliseconds