qcacmn: Wrappers for OS API's used for device cfg

Use appropriate wrappers for OS API's used for
device configuration.

Change-Id: I6a8042175d1a5939742be077fa45e8b776eee180
CRs-Fixed: 2222560
This commit is contained in:
Debasis Das
2018-07-19 20:45:37 +05:30
committed by Nitesh Shrivastav
parent bf3428b207
commit c2af7e7648
2 changed files with 7 additions and 5 deletions

View File

@@ -31,6 +31,7 @@
#include <wlan_spectral_ucfg_api.h>
#include <wlan_cfg80211_spectral.h>
#include <spectral_ioctl.h>
#include "qal_devcfg.h"
static const struct nla_policy spectral_scan_policy[
QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CONFIG_MAX + 1] = {
@@ -430,7 +431,7 @@ int wlan_cfg80211_spectral_scan_config_and_start(struct wiphy *wiphy,
return -EINVAL;
}
cfg80211_vendor_cmd_reply(skb);
qal_devcfg_send_response((qdf_nbuf_t)skb);
return 0;
}
@@ -534,7 +535,7 @@ int wlan_cfg80211_spectral_scan_get_config(struct wiphy *wiphy,
kfree_skb(skb);
return -EINVAL;
}
cfg80211_vendor_cmd_reply(skb);
qal_devcfg_send_response((qdf_nbuf_t)skb);
return 0;
}
@@ -584,7 +585,7 @@ int wlan_cfg80211_spectral_scan_get_cap(struct wiphy *wiphy,
spectral_cap.hw_gen))
goto fail;
cfg80211_vendor_cmd_reply(skb);
qal_devcfg_send_response((qdf_nbuf_t)skb);
return 0;
@@ -633,7 +634,7 @@ int wlan_cfg80211_spectral_scan_get_diag_stats(struct wiphy *wiphy,
kfree_skb(skb);
return -EINVAL;
}
cfg80211_vendor_cmd_reply(skb);
qal_devcfg_send_response((qdf_nbuf_t)skb);
return 0;
}
@@ -666,7 +667,7 @@ int wlan_cfg80211_spectral_scan_get_status(struct wiphy *wiphy,
skb,
QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_STATUS_IS_ACTIVE))
goto fail;
cfg80211_vendor_cmd_reply(skb);
qal_devcfg_send_response((qdf_nbuf_t)skb);
return 0;
fail:

View File

@@ -70,6 +70,7 @@ INCS += -I$(obj)/$(DEPTH)/include -I$(obj)/$(DEPTH)/umac/include \
-I$(obj)/$(DEPTH)/qca_ol \
-I$(obj)/$(DEPTH)/cmn_dev/qdf/inc \
-I$(obj)/$(DEPTH)/cmn_dev/qdf/linux/src \
-I$(obj)/$(DEPTH)/cmn_dev/qal/inc \
-I$(obj)/$(DEPTH)/cmn_dev/hif \
-I$(obj)/$(DEPTH)/cmn_dev/hif/inc \
-I$(obj)/$(DEPTH)/cmn_dev/hif/src \