qcacmn: Define restart bitmap using qdf_bitmap

Add change to define restart bitmap using the generalized bitmap
declaration. Also use generalized function to check if any of the
bits are set in the bitmap.

Change-Id: I06859fc089f121559231a7e13bcab63322e5ef9b
CRs-Fixed: 2690914
This commit is contained in:
Santosh Anbu
2020-05-20 14:52:48 +05:30
committed by nshrivas
parent bfaf232db7
commit ef8a6e1b47
2 changed files with 4 additions and 3 deletions

View File

@@ -28,6 +28,8 @@
#include <qdf_timer.h>
#include <qdf_atomic.h>
#include <qdf_util.h>
#include <wlan_cmn.h>
#ifdef FEATURE_RUNTIME_PM
#include <wlan_pmo_common_public_struct.h>
#endif
@@ -152,7 +154,6 @@ struct peer_delete_all_response {
uint8_t status;
};
#define VDEV_ID_BMAP_SIZE 3
/**
* struct multi_vdev_restart_resp - multi-vdev restart response structure
* @pdev_id: pdev id
@@ -162,7 +163,7 @@ struct peer_delete_all_response {
struct multi_vdev_restart_resp {
uint8_t pdev_id;
uint8_t status;
unsigned long vdev_id_bmap[VDEV_ID_BMAP_SIZE];
qdf_bitmap(vdev_id_bmap, WLAN_UMAC_PSOC_MAX_VDEVS);
};
#endif /* __WLAN_VDEV_MGR_TGT_IF_RX_DEFS_H__ */