diff options
| author | yeshwanth sriram guntuka <ysriramg@codeaurora.org> | 2017-04-05 12:58:19 +0530 |
|---|---|---|
| committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2017-04-10 02:52:38 -0700 |
| commit | faec829ff5012814dbab09d568e9c134adf33e7e (patch) | |
| tree | edfe4b67c12b2ab9984849f1c60a45e5fac0db4c | |
| parent | fe7a21f601ea3bdf2f695ba445b2ad7d583fc866 (diff) | |
qcacld-2.0: Fix build error
Invoking cfg80211_connect_bss in hdd_connect_bss
function instead of __hdd_connect_bss results in
build error.
Fix is to invoke __hdd_connect_bss instead of
cfg80211_connect_bss.
Change-Id: I95e786fad5188d3aed05ae9f91ba49bda56a6254
CRs-Fixed: 2029195
| -rw-r--r-- | CORE/HDD/src/wlan_hdd_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CORE/HDD/src/wlan_hdd_main.c b/CORE/HDD/src/wlan_hdd_main.c index 6958cb24c905..2c9b47feeafb 100644 --- a/CORE/HDD/src/wlan_hdd_main.c +++ b/CORE/HDD/src/wlan_hdd_main.c @@ -12177,7 +12177,7 @@ static void hdd_connect_bss(struct net_device *dev, const u8 *bssid, size_t resp_ie_len, int status, gfp_t gfp, bool connect_timeout, tSirResultCodes timeout_reason) { - cfg80211_connect_bss(dev, bssid, bss, req_ie, req_ie_len, + __hdd_connect_bss(dev, bssid, bss, req_ie, req_ie_len, resp_ie, resp_ie_len, status, gfp, timeout_reason); } #endif |
