|
@@ -312,11 +312,11 @@ scm_get_next_node(struct scan_dbs *scan_db,
|
|
|
*/
|
|
|
static void scm_check_and_age_out(struct scan_dbs *scan_db,
|
|
|
struct scan_cache_node *node,
|
|
|
- uint32_t scan_aging_time)
|
|
|
+ qdf_time_t scan_aging_time)
|
|
|
{
|
|
|
if (util_scan_entry_age(node->entry) >=
|
|
|
scan_aging_time) {
|
|
|
- scm_debug("Aging out BSSID: %pM with age %d ms",
|
|
|
+ scm_debug("Aging out BSSID: %pM with age %lu ms",
|
|
|
node->entry->bssid.bytes,
|
|
|
util_scan_entry_age(node->entry));
|
|
|
qdf_spin_lock_bh(&scan_db->scan_db_lock);
|
|
@@ -401,7 +401,7 @@ static QDF_STATUS scm_flush_oldest_entry(struct scan_dbs *scan_db)
|
|
|
}
|
|
|
|
|
|
if (oldest_node) {
|
|
|
- scm_debug("Flush oldest BSSID: %pM with age %d ms",
|
|
|
+ scm_debug("Flush oldest BSSID: %pM with age %lu ms",
|
|
|
oldest_node->entry->bssid.bytes,
|
|
|
util_scan_entry_age(oldest_node->entry));
|
|
|
/* Release ref_cnt taken for oldest_node and delete it */
|