|
@@ -651,7 +651,6 @@ int hdd_ndi_delete(uint8_t vdev_id, char *iface_name, uint16_t transaction_id)
|
|
|
struct hdd_adapter *adapter;
|
|
|
struct hdd_station_ctx *sta_ctx;
|
|
|
struct hdd_context *hdd_ctx = cds_get_context(QDF_MODULE_ID_HDD);
|
|
|
- uint8_t sta_id;
|
|
|
|
|
|
if (!hdd_ctx) {
|
|
|
hdd_err("hdd_ctx is null");
|
|
@@ -671,12 +670,6 @@ int hdd_ndi_delete(uint8_t vdev_id, char *iface_name, uint16_t transaction_id)
|
|
|
return -EINVAL;
|
|
|
}
|
|
|
|
|
|
- sta_id = sta_ctx->broadcast_sta_id;
|
|
|
- if (sta_id >= HDD_MAX_ADAPTERS) {
|
|
|
- hdd_err("Error: Invalid sta id %u", sta_id);
|
|
|
- return -EINVAL;
|
|
|
- }
|
|
|
-
|
|
|
os_if_nan_set_ndp_delete_transaction_id(adapter->vdev,
|
|
|
transaction_id);
|
|
|
os_if_nan_set_ndi_state(adapter->vdev, NAN_DATA_NDI_DELETING_STATE);
|