diff options
| author | a1205z <a1205z@motorola.com> | 2013-12-06 15:01:07 -0600 | 
|---|---|---|
| committer | James Wylder <jwylder@motorola.com> | 2014-03-05 17:46:55 -0600 | 
| commit | 58262e28fc9897833ab4a0dff122dff9bdbe8a33 (patch) | |
| tree | 38b58df036278d5382787cccd590a2c36c206a62 /net/wireless/util.c | |
| parent | 67b53586a795503f5885e673ab59de8c2ad93922 (diff) | |
| download | olio-linux-3.10-58262e28fc9897833ab4a0dff122dff9bdbe8a33.tar.xz olio-linux-3.10-58262e28fc9897833ab4a0dff122dff9bdbe8a33.zip  | |
IKG5-1471: Change the WLAN driver from dynamic module to static module
Change the WLAN driver from dynamic module to static module, move it
from hardware/ti/wlan to kernel drivers.
This driver is pulled from https://github.com/TI-OpenLink/wl18xx by
the latest commit as the following.
commit 01d7a03557723e7028b36a39c3de3c33ebf02c53
Author: Arik Nemtsov <arik@wizery.com>
Date:   Mon Oct 7 10:37:43 2013 +0300
    wlcore: decrease warning verbosity during recovery
    Silently ignore repetitive scheduling of recovery work and commands
    being passed to the bus when the HW is not available. This can happen
    many times during recovery and slow it down. It also spams the kernel
    logs.
Change-Id: I5d8bdc05b23632a8de3e106cd54a39f70a6bcbac
Signed-off-by: a1205z <a1205z@motorola.com>
Reviewed-on: http://gerrit.pcs.mot.com/588639
SLTApproved: Slta Waiver <sltawvr@motorola.com>
Tested-by: Jira Key <jirakey@motorola.com>
Reviewed-by: Amit Jain <ajain@motorola.com>
Submit-Approved: Jira Key <jirakey@motorola.com>
Diffstat (limited to 'net/wireless/util.c')
| -rw-r--r-- | net/wireless/util.c | 3 | 
1 files changed, 3 insertions, 0 deletions
diff --git a/net/wireless/util.c b/net/wireless/util.c index f5ad4d94ba8..ccacc2402ba 100644 --- a/net/wireless/util.c +++ b/net/wireless/util.c @@ -768,6 +768,9 @@ void cfg80211_process_wdev_events(struct wireless_dev *wdev)  		case EVENT_IBSS_JOINED:  			__cfg80211_ibss_joined(wdev->netdev, ev->ij.bssid);  			break; +		case EVENT_IM_SCAN_RESULT: +			__cfg80211_send_intermediate_result(wdev->netdev, ev); +			break;  		}  		wdev_unlock(wdev);  |