Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

ath5k: fix extra set bit in multicast mask

Bit 32 was always set which looks to have been accidental,
according to git history.

Signed-off-by: Bob Copeland <me@bobcopeland.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>

authored by

Bob Copeland and committed by
John W. Linville
f287cbd0 6a084839

+1 -1
+1 -1
drivers/net/wireless/ath/ath5k/mac80211-ops.c
··· 325 325 struct netdev_hw_addr *ha; 326 326 327 327 mfilt[0] = 0; 328 - mfilt[1] = 1; 328 + mfilt[1] = 0; 329 329 330 330 netdev_hw_addr_list_for_each(ha, mc_list) { 331 331 /* calculate XOR of eight 6-bit values */