|
@@ -5362,68 +5362,3 @@ int iw_set_ap_address(struct net_device *dev, struct iw_request_info *info,
|
|
|
|
|
|
return ret;
|
|
|
}
|
|
|
-
|
|
|
-/**
|
|
|
- * __iw_get_ap_address() - get ap address
|
|
|
- * @dev: pointer to the net device
|
|
|
- * @info: pointer to the iw request info
|
|
|
- * @wrqu: pointer to iwreq_data
|
|
|
- * @extra: pointer to the data
|
|
|
- *
|
|
|
- * This function returns currently associated BSSID.
|
|
|
- *
|
|
|
- * Return: 0 on success, error number otherwise
|
|
|
- */
|
|
|
-static int __iw_get_ap_address(struct net_device *dev,
|
|
|
- struct iw_request_info *info,
|
|
|
- union iwreq_data *wrqu, char *extra)
|
|
|
-{
|
|
|
- struct hdd_adapter *adapter = WLAN_HDD_GET_PRIV_PTR(dev);
|
|
|
- struct hdd_context *hdd_ctx;
|
|
|
- struct hdd_station_ctx *sta_ctx =
|
|
|
- WLAN_HDD_GET_STATION_CTX_PTR(adapter);
|
|
|
- int ret;
|
|
|
-
|
|
|
- ENTER_DEV(dev);
|
|
|
-
|
|
|
- hdd_ctx = WLAN_HDD_GET_CTX(adapter);
|
|
|
- ret = wlan_hdd_validate_context(hdd_ctx);
|
|
|
- if (ret)
|
|
|
- return ret;
|
|
|
-
|
|
|
- ret = hdd_check_standard_wext_control(hdd_ctx, info);
|
|
|
- if (0 != ret)
|
|
|
- return ret;
|
|
|
-
|
|
|
- if (sta_ctx->conn_info.connState == eConnectionState_Associated ||
|
|
|
- eConnectionState_IbssConnected == sta_ctx->conn_info.connState) {
|
|
|
- qdf_mem_copy(wrqu->ap_addr.sa_data,
|
|
|
- sta_ctx->conn_info.bssId.bytes,
|
|
|
- QDF_MAC_ADDR_SIZE);
|
|
|
- } else {
|
|
|
- memset(wrqu->ap_addr.sa_data, 0, sizeof(wrqu->ap_addr.sa_data));
|
|
|
- }
|
|
|
- EXIT();
|
|
|
- return 0;
|
|
|
-}
|
|
|
-
|
|
|
-/**
|
|
|
- * iw_get_ap_address() - get ap addresses callback function
|
|
|
- * @dev: Pointer to the net device.
|
|
|
- * @info: Pointer to the iw_request_info.
|
|
|
- * @wrqu: Pointer to the iwreq_data.
|
|
|
- * @extra: Pointer to the data.
|
|
|
- *
|
|
|
- * Return: 0 for success, error number on failure.
|
|
|
- */
|
|
|
-int iw_get_ap_address(struct net_device *dev, struct iw_request_info *info,
|
|
|
- union iwreq_data *wrqu, char *extra)
|
|
|
-{
|
|
|
- int ret;
|
|
|
-
|
|
|
- cds_ssr_protect(__func__);
|
|
|
- ret = __iw_get_ap_address(dev, info, wrqu, extra);
|
|
|
- cds_ssr_unprotect(__func__);
|
|
|
-
|
|
|
- return ret;
|
|
|
-}
|