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

ath9k: Fix FIF_BCN_PRBRESP_PROMISC handling

So that a new created IBSS network
doesn't break on the first scan.

It seems to Sujith and me that this
stupid code unnecessary, too.

So remove it...

Signed-off-by: Alina Friedrichsen <x-alina@gmx.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>

authored by

Alina Friedrichsen and committed by
John W. Linville
91ed19f5 541d8dd5

-8
-8
drivers/net/wireless/ath9k/main.c
··· 2410 2410 rfilt = ath_calcrxfilter(sc); 2411 2411 ath9k_hw_setrxfilter(sc->sc_ah, rfilt); 2412 2412 2413 - if (changed_flags & FIF_BCN_PRBRESP_PROMISC) { 2414 - if (*total_flags & FIF_BCN_PRBRESP_PROMISC) { 2415 - memcpy(sc->curbssid, ath_bcast_mac, ETH_ALEN); 2416 - sc->curaid = 0; 2417 - ath9k_hw_write_associd(sc); 2418 - } 2419 - } 2420 - 2421 2413 DPRINTF(sc, ATH_DBG_CONFIG, "Set HW RX filter: 0x%x\n", sc->rx.rxfilter); 2422 2414 } 2423 2415