qcacmn: Add dbgid for each runtime put/get

This is to enhance statics for runtime put/get, which is
to detect if there is mismatch for usage_count.

Change-Id: I24cddb9d10e4cb675c8375cbd0f589c7718bd680
CRs-Fixed: 2647972
This commit is contained in:
Jingxiang Ge
2020-03-27 10:17:43 +08:00
gecommit door nshrivas
bovenliggende 2905d1d38f
commit e7d41574f3
11 gewijzigde bestanden met toevoegingen van 340 en 156 verwijderingen

Bestand weergeven

@@ -448,7 +448,7 @@ QDF_STATUS qdf_runtime_pm_get(void)
return QDF_STATUS_E_INVAL;
}
ret = hif_pm_runtime_get(ol_sc);
ret = hif_pm_runtime_get(ol_sc, RTPM_ID_RESVERD);
if (ret)
return QDF_STATUS_E_FAILURE;
@@ -481,7 +481,7 @@ QDF_STATUS qdf_runtime_pm_put(void)
return QDF_STATUS_E_INVAL;
}
ret = hif_pm_runtime_put(ol_sc);
ret = hif_pm_runtime_put(ol_sc, RTPM_ID_RESVERD);
if (ret)
return QDF_STATUS_E_FAILURE;