blob: 9f386f2c5f194ee2b54023fbf45ef2c080dfc38a [file] [log] [blame]
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001/*
Jeff Johnson46106882017-01-12 10:39:26 -08002 * Copyright (c) 2012-2017 The Linux Foundation. All rights reserved.
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08003 *
4 * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
5 *
6 *
7 * Permission to use, copy, modify, and/or distribute this software for
8 * any purpose with or without fee is hereby granted, provided that the
9 * above copyright notice and this permission notice appear in all
10 * copies.
11 *
12 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
13 * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
14 * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
15 * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
16 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
17 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
18 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
19 * PERFORMANCE OF THIS SOFTWARE.
20 */
21
22/*
23 * This file was originally distributed by Qualcomm Atheros, Inc.
24 * under proprietary terms before Copyright ownership was assigned
25 * to the Linux Foundation.
26 */
27
28#ifndef __WEXT_IW_H__
29#define __WEXT_IW_H__
30
31#include <linux/version.h>
32#include <linux/module.h>
33#include <linux/netdevice.h>
34#include <linux/wireless.h>
35#include <net/iw_handler.h>
36#include <linux/timer.h>
Anurag Chouhance0dc992016-02-16 18:18:03 +053037#include "qdf_event.h"
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080038
39/*
40 * order of parameters in addTs private ioctl
41 */
42#define HDD_WLAN_WMM_PARAM_HANDLE 0
43#define HDD_WLAN_WMM_PARAM_TID 1
44#define HDD_WLAN_WMM_PARAM_DIRECTION 2
45#define HDD_WLAN_WMM_PARAM_APSD 3
46#define HDD_WLAN_WMM_PARAM_USER_PRIORITY 4
47#define HDD_WLAN_WMM_PARAM_NOMINAL_MSDU_SIZE 5
48#define HDD_WLAN_WMM_PARAM_MAXIMUM_MSDU_SIZE 6
49#define HDD_WLAN_WMM_PARAM_MINIMUM_DATA_RATE 7
50#define HDD_WLAN_WMM_PARAM_MEAN_DATA_RATE 8
51#define HDD_WLAN_WMM_PARAM_PEAK_DATA_RATE 9
52#define HDD_WLAN_WMM_PARAM_MAX_BURST_SIZE 10
53#define HDD_WLAN_WMM_PARAM_MINIMUM_PHY_RATE 11
54#define HDD_WLAN_WMM_PARAM_SURPLUS_BANDWIDTH_ALLOWANCE 12
55#define HDD_WLAN_WMM_PARAM_SERVICE_INTERVAL 13
56#define HDD_WLAN_WMM_PARAM_SUSPENSION_INTERVAL 14
57#define HDD_WLAN_WMM_PARAM_BURST_SIZE_DEFN 15
58#define HDD_WLAN_WMM_PARAM_ACK_POLICY 16
59#define HDD_WLAN_WMM_PARAM_INACTIVITY_INTERVAL 17
60#define HDD_WLAN_WMM_PARAM_MAX_SERVICE_INTERVAL 18
61#define HDD_WLAN_WMM_PARAM_COUNT 19
62
63#define MHZ 6
64
65#define WE_MAX_STR_LEN IW_PRIV_SIZE_MASK
66#define WLAN_HDD_UI_BAND_AUTO 0
67#define WLAN_HDD_UI_BAND_5_GHZ 1
68#define WLAN_HDD_UI_BAND_2_4_GHZ 2
69/* SETBAND x */
70/* 012345678 */
71#define WLAN_HDD_UI_SET_BAND_VALUE_OFFSET 8
72
73typedef enum {
74 HDD_WLAN_WMM_DIRECTION_UPSTREAM = 0,
75 HDD_WLAN_WMM_DIRECTION_DOWNSTREAM = 1,
76 HDD_WLAN_WMM_DIRECTION_BIDIRECTIONAL = 2,
77} hdd_wlan_wmm_direction_e;
78
79typedef enum {
80 HDD_WLAN_WMM_POWER_SAVE_LEGACY = 0,
81 HDD_WLAN_WMM_POWER_SAVE_UAPSD = 1,
82} hdd_wlan_wmm_power_save_e;
83
84typedef enum {
85 /* TSPEC/re-assoc done, async */
86 HDD_WLAN_WMM_STATUS_SETUP_SUCCESS = 0,
87 /* no need to setup TSPEC since ACM=0 and no UAPSD desired, sync + async */
88 HDD_WLAN_WMM_STATUS_SETUP_SUCCESS_NO_ACM_NO_UAPSD = 1,
89 /* no need to setup TSPEC since ACM=0 and UAPSD already exists, sync + async */
90 HDD_WLAN_WMM_STATUS_SETUP_SUCCESS_NO_ACM_UAPSD_EXISTING = 2,
91 /* TSPEC result pending, sync */
92 HDD_WLAN_WMM_STATUS_SETUP_PENDING = 3,
93 /* TSPEC/re-assoc failed, sync + async */
94 HDD_WLAN_WMM_STATUS_SETUP_FAILED = 4,
95 /* Request rejected due to invalid params, sync + async */
96 HDD_WLAN_WMM_STATUS_SETUP_FAILED_BAD_PARAM = 5,
97 /* TSPEC request rejected since AP!=QAP, sync */
98 HDD_WLAN_WMM_STATUS_SETUP_FAILED_NO_WMM = 6,
99
100 /* TSPEC modification/re-assoc successful, async */
101 HDD_WLAN_WMM_STATUS_MODIFY_SUCCESS = 7,
102 /* TSPEC modification a no-op since ACM=0 and no change in UAPSD, sync + async */
103 HDD_WLAN_WMM_STATUS_MODIFY_SUCCESS_NO_ACM_NO_UAPSD = 8,
104 /* TSPEC modification a no-op since ACM=0 and requested U-APSD already exists, sync + async */
105 HDD_WLAN_WMM_STATUS_MODIFY_SUCCESS_NO_ACM_UAPSD_EXISTING = 9,
106 /* TSPEC result pending, sync */
107 HDD_WLAN_WMM_STATUS_MODIFY_PENDING = 10,
108 /* TSPEC modification failed, prev TSPEC in effect, sync + async */
109 HDD_WLAN_WMM_STATUS_MODIFY_FAILED = 11,
110 /* TSPEC modification request rejected due to invalid params, sync + async */
111 HDD_WLAN_WMM_STATUS_MODIFY_FAILED_BAD_PARAM = 12,
112
113 /* TSPEC release successful, sync and also async */
114 HDD_WLAN_WMM_STATUS_RELEASE_SUCCESS = 13,
115 /* TSPEC release pending, sync */
116 HDD_WLAN_WMM_STATUS_RELEASE_PENDING = 14,
117 /* TSPEC release failed, sync + async */
118 HDD_WLAN_WMM_STATUS_RELEASE_FAILED = 15,
119 /* TSPEC release rejected due to invalid params, sync */
120 HDD_WLAN_WMM_STATUS_RELEASE_FAILED_BAD_PARAM = 16,
121 /* TSPEC modified due to the mux'ing of requests on ACs, async */
122
123 HDD_WLAN_WMM_STATUS_MODIFIED = 17,
124 /* TSPEC revoked by AP, async */
125 HDD_WLAN_WMM_STATUS_LOST = 18,
126 /* some internal failure like memory allocation failure, etc, sync */
127 HDD_WLAN_WMM_STATUS_INTERNAL_FAILURE = 19,
128
129 /* U-APSD failed during setup but OTA setup (whether TSPEC exchnage or */
130 /* re-assoc) was done so app should release this QoS, async */
131 HDD_WLAN_WMM_STATUS_SETUP_UAPSD_SET_FAILED = 20,
132 /* U-APSD failed during modify, but OTA setup (whether TSPEC exchnage or */
133 /* re-assoc) was done so app should release this QoS, async */
134 HDD_WLAN_WMM_STATUS_MODIFY_UAPSD_SET_FAILED = 21
135} hdd_wlan_wmm_status_e;
136
137/** TS Info Ack Policy */
138typedef enum {
139 HDD_WLAN_WMM_TS_INFO_ACK_POLICY_NORMAL_ACK = 0,
140 HDD_WLAN_WMM_TS_INFO_ACK_POLICY_HT_IMMEDIATE_BLOCK_ACK = 1,
141} hdd_wlan_wmm_ts_info_ack_policy_e;
142
143/** Maximum Length of WPA/RSN IE */
144#define MAX_WPA_RSN_IE_LEN 40
145
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800146/** Enable 11d */
147#define ENABLE_11D 1
148
149/** Disable 11d */
150#define DISABLE_11D 0
151
152/*
Jeff Johnson46106882017-01-12 10:39:26 -0800153 * refer wpa.h in wpa supplicant code for REASON_MICHAEL_MIC_FAILURE.
154 * supplicant sets REASON_MICHAEL_MIC_FAILURE as the reason code when
155 * it sends the MLME deauth IOCTL for TKIP counter measures
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800156 */
157#define HDD_REASON_MICHAEL_MIC_FAILURE 14
158
159/*
160 * These are for TLV fields in WPS IE
161 */
162#define HDD_WPS_UUID_LEN 16
163#define HDD_WPS_ELEM_VERSION 0x104a
164#define HDD_WPS_ELEM_REQUEST_TYPE 0x103a
165#define HDD_WPS_ELEM_CONFIG_METHODS 0x1008
166#define HDD_WPS_ELEM_UUID_E 0x1047
167#define HDD_WPS_ELEM_PRIMARY_DEVICE_TYPE 0x1054
168#define HDD_WPS_ELEM_RF_BANDS 0x103c
169#define HDD_WPS_ELEM_ASSOCIATION_STATE 0x1002
170#define HDD_WPS_ELEM_CONFIGURATION_ERROR 0x1009
171#define HDD_WPS_ELEM_DEVICE_PASSWORD_ID 0x1012
172
173#define HDD_WPA_ELEM_VENDOR_EXTENSION 0x1049
174
175#define HDD_WPS_MANUFACTURER_LEN 64
176#define HDD_WPS_MODEL_NAME_LEN 32
177#define HDD_WPS_MODEL_NUM_LEN 32
178#define HDD_WPS_SERIAL_NUM_LEN 32
179#define HDD_WPS_DEVICE_OUI_LEN 4
180#define HDD_WPS_DEVICE_NAME_LEN 32
181
182#define HDD_WPS_ELEM_WPS_STATE 0x1044
183#define HDD_WPS_ELEM_APSETUPLOCK 0x1057
184#define HDD_WPS_ELEM_SELECTEDREGISTRA 0x1041
185#define HDD_WPS_ELEM_RSP_TYPE 0x103B
186#define HDD_WPS_ELEM_MANUFACTURER 0x1021
187#define HDD_WPS_ELEM_MODEL_NAME 0x1023
188#define HDD_WPS_ELEM_MODEL_NUM 0x1024
189#define HDD_WPS_ELEM_SERIAL_NUM 0x1042
190#define HDD_WPS_ELEM_DEVICE_NAME 0x1011
191#define HDD_WPS_ELEM_REGISTRA_CONF_METHODS 0x1053
192
193#define HDD_RTSCTS_EN_MASK 0xF
194#define HDD_RTSCTS_ENABLE 1
195#define HDD_CTS_ENABLE 2
196
197#define WPS_OUI_TYPE "\x00\x50\xf2\x04"
198#define WPS_OUI_TYPE_SIZE 4
199
200#define SS_OUI_TYPE "\x00\x16\x32"
201#define SS_OUI_TYPE_SIZE 3
202
203#define P2P_OUI_TYPE "\x50\x6f\x9a\x09"
204#define P2P_OUI_TYPE_SIZE 4
205
206#define HS20_OUI_TYPE "\x50\x6f\x9a\x10"
207#define HS20_OUI_TYPE_SIZE 4
208
209#define OSEN_OUI_TYPE "\x50\x6f\x9a\x12"
210#define OSEN_OUI_TYPE_SIZE 4
211
212#ifdef WLAN_FEATURE_WFD
213#define WFD_OUI_TYPE "\x50\x6f\x9a\x0a"
214#define WFD_OUI_TYPE_SIZE 4
215#endif
216
Selvaraj, Sridhara7fc7632016-09-04 13:13:38 +0530217#define MBO_OUI_TYPE "\x50\x6f\x9a\x16"
218#define MBO_OUI_TYPE_SIZE 4
219
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800220typedef enum {
221 eWEXT_WPS_OFF = 0,
222 eWEXT_WPS_ON = 1,
223} hdd_wps_mode_e;
224
225/*
226 * This structure contains the interface level (granularity)
227 * configuration information in support of wireless extensions.
228 */
229typedef struct hdd_wext_state_s {
230 /** The CSR "desired" Profile */
231 tCsrRoamProfile roamProfile;
232
233 /** BSSID to which connect request is received */
Anurag Chouhan6d760662016-02-20 16:05:43 +0530234 struct qdf_mac_addr req_bssId;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800235
236 /** The association status code */
237 uint32_t statusCode;
238
239 /** wpa version WPA/WPA2/None*/
240 int32_t wpaVersion;
241
242 /**WPA or RSN IE*/
243 uint8_t WPARSNIE[MAX_WPA_RSN_IE_LEN];
244
245 /**gen IE */
246 tSirAddie genIE;
247
248 /**Additional IE for assoc */
249 tSirAddie assocAddIE;
250
251 /**auth key mgmt */
252 int32_t authKeyMgmt;
253
Anurag Chouhanf04e84f2016-03-03 10:12:12 +0530254 /* qdf event */
255 qdf_event_t hdd_qdf_event;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800256
Anurag Chouhance0dc992016-02-16 18:18:03 +0530257 qdf_event_t scanevent;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800258
259 /**Counter measure state, Started/Stopped*/
260 bool mTKIPCounterMeasures;
261
262 /**Completion Variable*/
263 struct completion completion_var;
264
265#ifdef FEATURE_WLAN_ESE
266 /* ESE state variables */
267 bool isESEConnection;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800268#endif
269} hdd_wext_state_t;
270
271typedef struct ccp_freq_chan_map_s {
272 /* List of frequencies */
273 uint32_t freq;
274 uint32_t chan;
275} hdd_freq_chan_map_t;
276
277/* Packet Types. */
278#define WLAN_KEEP_ALIVE_UNSOLICIT_ARP_RSP 2
279#define WLAN_KEEP_ALIVE_NULL_PKT 1
280
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800281#define wlan_hdd_get_wps_ie_ptr(ie, ie_len) \
282 wlan_hdd_get_vendor_oui_ie_ptr(WPS_OUI_TYPE, WPS_OUI_TYPE_SIZE, ie, ie_len)
283
284#define wlan_hdd_get_p2p_ie_ptr(ie, ie_len) \
285 wlan_hdd_get_vendor_oui_ie_ptr(P2P_OUI_TYPE, P2P_OUI_TYPE_SIZE, ie, ie_len)
286
287#ifdef WLAN_FEATURE_WFD
288#define wlan_hdd_get_wfd_ie_ptr(ie, ie_len) \
289 wlan_hdd_get_vendor_oui_ie_ptr(WFD_OUI_TYPE, WFD_OUI_TYPE_SIZE, ie, ie_len)
290#endif
291
Selvaraj, Sridhar4ea106e2016-08-05 20:34:46 +0530292#define wlan_hdd_get_mbo_ie_ptr(ie, ie_len) \
293 wlan_hdd_get_vendor_oui_ie_ptr(MBO_OUI_TYPE, MBO_OUI_TYPE_SIZE, ie, ie_len)
Anurag Chouhanbf5e0e22016-09-12 12:54:09 +0530294/*
295 * Defines for fw_test command
296 */
297#define HDD_FWTEST_PARAMS 3
298#define HDD_FWTEST_SU_PARAM_ID 53
299#define HDD_FWTEST_MU_PARAM_ID 2
300#define HDD_FWTEST_SU_DEFAULT_VALUE 100
301#define HDD_FWTEST_MU_DEFAULT_VALUE 40
302#define HDD_FWTEST_MAX_VALUE 500
303
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800304extern int hdd_unregister_wext(struct net_device *dev);
305extern int hdd_register_wext(struct net_device *dev);
306extern int hdd_wlan_get_freq(uint32_t chan, uint32_t *freq);
Arun Khandavallia96c2c02016-05-17 19:15:34 +0530307extern void hdd_wlan_get_version(hdd_context_t *hdd_ctx,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800308 union iwreq_data *wrqu, char *extra);
309
310extern void hdd_wlan_get_stats(hdd_adapter_t *pAdapter, uint16_t *length,
311 char *buffer, uint16_t buf_len);
Govind Singha471e5e2015-10-12 17:11:14 +0530312extern void hdd_wlan_list_fw_profile(uint16_t *length,
313 char *buffer, uint16_t buf_len);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800314
Jeff Johnson5b907622017-02-07 10:00:37 -0800315int iw_get_rts_threshold(struct net_device *dev,
316 struct iw_request_info *info,
317 union iwreq_data *wrqu, char *extra);
318
319int iw_get_frag_threshold(struct net_device *dev,
320 struct iw_request_info *info,
321 union iwreq_data *wrqu, char *extra);
322
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800323extern int iw_set_essid(struct net_device *dev,
324 struct iw_request_info *info,
325 union iwreq_data *wrqu, char *extra);
326
327extern int iw_get_essid(struct net_device *dev,
328 struct iw_request_info *info,
329 struct iw_point *dwrq, char *extra);
330
331extern int iw_set_ap_address(struct net_device *dev,
332 struct iw_request_info *info,
333 union iwreq_data *wrqu, char *extra);
334
335extern int iw_get_ap_address(struct net_device *dev,
336 struct iw_request_info *info,
337 union iwreq_data *wrqu, char *extra);
338
339extern int iw_set_auth(struct net_device *dev, struct iw_request_info *info,
340 union iwreq_data *wrqu, char *extra);
341
342extern int iw_get_auth(struct net_device *dev, struct iw_request_info *info,
343 union iwreq_data *wrqu, char *extra);
344
345extern int iw_set_var_ints_getnone(struct net_device *dev,
346 struct iw_request_info *info,
347 union iwreq_data *wrqu, char *extra);
348
349extern int iw_set_three_ints_getnone(struct net_device *dev,
350 struct iw_request_info *info,
351 union iwreq_data *wrqu, char *extra);
352
353extern int hdd_priv_get_data(struct iw_point *p_priv_data,
354 union iwreq_data *wrqu);
355
356extern void *mem_alloc_copy_from_user_helper(const void *wrqu_data, size_t len);
357
Jeff Johnsone50427c2017-01-26 10:54:49 -0800358/**
359 * wlan_hdd_get_linkspeed_for_peermac() - Get link speed for a peer
360 * @adapter: adapter upon which the peer is active
361 * @mac_address: MAC address of the peer
362 * @linkspeed: pointer to memory where returned link speed is to be placed
363 *
364 * This function will send a query to SME for the linkspeed of the
365 * given peer, and then wait for the callback to be invoked.
366 *
367 * Return: 0 if linkspeed data is available, negative errno otherwise
368 */
369int wlan_hdd_get_linkspeed_for_peermac(hdd_adapter_t *adapter,
370 struct qdf_mac_addr *mac_address,
371 uint32_t *linkspeed);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800372void hdd_clear_roam_profile_ie(hdd_adapter_t *pAdapter);
373
374uint8_t *wlan_hdd_get_vendor_oui_ie_ptr(uint8_t *oui, uint8_t oui_size,
375 uint8_t *ie, int ie_len);
376
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530377QDF_STATUS wlan_hdd_get_class_astats(hdd_adapter_t *pAdapter);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800378
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530379QDF_STATUS wlan_hdd_get_station_stats(hdd_adapter_t *pAdapter);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800380
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530381QDF_STATUS wlan_hdd_get_rssi(hdd_adapter_t *pAdapter, int8_t *rssi_value);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800382
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530383QDF_STATUS wlan_hdd_get_snr(hdd_adapter_t *pAdapter, int8_t *snr);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800384
Manjeet Singhe80d6d82016-09-02 19:04:41 +0530385int hdd_get_ldpc(hdd_adapter_t *adapter, int *value);
386int hdd_set_ldpc(hdd_adapter_t *adapter, int value);
387int hdd_get_tx_stbc(hdd_adapter_t *adapter, int *value);
388int hdd_set_tx_stbc(hdd_adapter_t *adapter, int value);
389int hdd_get_rx_stbc(hdd_adapter_t *adapter, int *value);
390int hdd_set_rx_stbc(hdd_adapter_t *adapter, int value);
391
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800392void wlan_hdd_change_country_code_callback(void *pAdapter);
393
394int hdd_set_band(struct net_device *dev, u8 ui_band);
395int hdd_set_band_helper(struct net_device *dev, const char *command);
396int wlan_hdd_update_phymode(struct net_device *net, tHalHandle hal,
397 int new_phymode, hdd_context_t *phddctx);
398
399int wlan_hdd_get_temperature(hdd_adapter_t *pAdapter, int *temperature);
400int wlan_hdd_get_link_speed(hdd_adapter_t *sta_adapter, uint32_t *link_speed);
Jeff Johnson441e1f72017-02-07 08:50:49 -0800401
402struct iw_request_info;
403/**
404 * hdd_check_standard_wext_control() - Check to see if standard
405 * wireless extensions ioctls are allowed
406 * @hdd_ctx: Global HDD context
407 * @info: Wireless extensions ioctl information passed by the kernel
408 *
409 * This function will examine the "standard_wext_control" configuration
410 * item to determine whether or not standard wireless extensions ioctls
411 * are allowed.
412 *
413 * Return: 0 if the ioctl is allowed to be processed, -ENOTSUPP if the
414 * ioctls have been disabled. Note that in addition to returning
415 * status, this function will log a message if the ioctls are disabled
416 * or deprecated.
417 */
418int hdd_check_standard_wext_control(struct hdd_context_s *hdd_ctx,
419 struct iw_request_info *info);
420
421/**
422 * hdd_check_private_wext_control() - Check to see if private
423 * wireless extensions ioctls are allowed
424 * @hdd_ctx: Global HDD context
425 * @info: Wireless extensions ioctl information passed by the kernel
426 *
427 * This function will examine the "private_wext_control" configuration
428 * item to determine whether or not private wireless extensions ioctls
429 * are allowed.
430 *
431 * Return: 0 if the ioctl is allowed to be processed, -ENOTSUPP if the
432 * ioctls have been disabled. Note that in addition to returning
433 * status, this function will log a message if the ioctls are disabled
434 * or deprecated.
435 */
436int hdd_check_private_wext_control(struct hdd_context_s *hdd_ctx,
437 struct iw_request_info *info);
438
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800439#endif /* __WEXT_IW_H__ */