Ver Fonte

qcacmn: Remove log in pm runtime get and put

Run throughput with Rome chip, crash happens since of too many logs
in pm runtime put and get. So remove log in these functions.

Change-Id: I9ca4ddef328ade7fef63d04f19603927cf8ee6d8
CRs-Fixed: 2112431
Wu Gao há 7 anos atrás
pai
commit
77b6e57eb0
1 ficheiros alterados com 0 adições e 2 exclusões
  1. 0 2
      htc/htc.c

+ 0 - 2
htc/htc.c

@@ -1050,7 +1050,6 @@ int htc_pm_runtime_get(HTC_HANDLE htc_handle)
 {
 	HTC_TARGET *target = GET_HTC_TARGET_FROM_HANDLE(htc_handle);
 
-	HTC_INFO("%s: %pS\n", __func__, (void *)_RET_IP_);
 	return hif_pm_runtime_get(target->hif_dev);
 }
 
@@ -1058,7 +1057,6 @@ int htc_pm_runtime_put(HTC_HANDLE htc_handle)
 {
 	HTC_TARGET *target = GET_HTC_TARGET_FROM_HANDLE(htc_handle);
 
-	HTC_INFO("%s: %pS\n", __func__, (void *)_RET_IP_);
 	return hif_pm_runtime_put(target->hif_dev);
 }
 #endif