diff options
author | Eliad Peller <eliad@wizery.com> | 2011-01-24 13:19:03 -0500 |
---|---|---|
committer | Luciano Coelho <coelho@ti.com> | 2011-01-24 16:44:27 -0500 |
commit | e5e2f24b3eec67a7a35d43654a997f98ca21aff2 (patch) | |
tree | e94ad0ae2cb16394c6fd076e1c0055f6860fa012 | |
parent | ea45b2cbf56a4e93e9c5a68b85794e6d79f69fce (diff) |
wl12xx: disable auto-arp
The auto-arp feature sometimes has unexpected side effects (e.g. firmware
crashes, no ARP replies, etc.)
disable it until it will be solved.
Signed-off-by: Eliad Peller <eliad@wizery.com>
Signed-off-by: Luciano Coelho <coelho@ti.com>
-rw-r--r-- | drivers/net/wireless/wl12xx/main.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/net/wireless/wl12xx/main.c b/drivers/net/wireless/wl12xx/main.c index e535e79e269d..dfab21e2e5dc 100644 --- a/drivers/net/wireless/wl12xx/main.c +++ b/drivers/net/wireless/wl12xx/main.c | |||
@@ -2445,8 +2445,7 @@ static void wl1271_bss_info_changed_sta(struct wl1271 *wl, | |||
2445 | } | 2445 | } |
2446 | 2446 | ||
2447 | ret = wl1271_acx_arp_ip_filter(wl, | 2447 | ret = wl1271_acx_arp_ip_filter(wl, |
2448 | (ACX_ARP_FILTER_ARP_FILTERING | | 2448 | ACX_ARP_FILTER_ARP_FILTERING, |
2449 | ACX_ARP_FILTER_AUTO_ARP), | ||
2450 | addr); | 2449 | addr); |
2451 | } else | 2450 | } else |
2452 | ret = wl1271_acx_arp_ip_filter(wl, 0, addr); | 2451 | ret = wl1271_acx_arp_ip_filter(wl, 0, addr); |