qcacld-3.0: Remove wma_get_hotlist_entries_per_page()

Previously change I6786ce42d99d6a3f29561c24dea7e3018fb0f3e9
("qcacld-3.0: Refactor formation of wmi scan roaming commands")
removed all of the clients of wma_get_hotlist_entries_per_page(),
so now remove this unused function.

Change-Id: I2a8931a9152b84f589e0b41a7c5138112db22985
CRs-Fixed: 2364106
Esse commit está contido em:
Jeff Johnson
2018-12-09 12:59:20 -08:00
commit de nshrivas
commit cf161a3986

Ver arquivo

@@ -4474,32 +4474,6 @@ QDF_STATUS wma_stop_extscan(tp_wma_handle wma,
return status;
}
/** wma_get_hotlist_entries_per_page() - hotlist entries per page
* @wmi_handle: wmi handle.
* @cmd: size of command structure.
* @per_entry_size: per entry size.
*
* This utility function calculates how many hotlist entries can
* fit in one page.
*
* Return: number of entries
*/
static inline int wma_get_hotlist_entries_per_page(wmi_unified_t wmi_handle,
size_t cmd_size,
size_t per_entry_size)
{
uint32_t avail_space = 0;
int num_entries = 0;
uint16_t max_msg_len = wmi_get_max_msg_len(wmi_handle);
/* Calculate number of hotlist entries that can
* be passed in wma message request.
*/
avail_space = max_msg_len - cmd_size;
num_entries = avail_space / per_entry_size;
return num_entries;
}
QDF_STATUS wma_extscan_start_hotlist_monitor(tp_wma_handle wma,
struct extscan_bssid_hotlist_set_params *params)
{