Browse Source

qcacld-3.0: Cleanup debug prints in refill thread

Cleanup debug prints in refill thread main loop API.

Change-Id: I9b8f7410562b2c90ad802eddca9a482014e91010
CRs-Fixed: 2950141
Karthik Kantamneni 3 years ago
parent
commit
37eb787c99
1 changed files with 0 additions and 2 deletions
  1. 0 2
      core/dp/txrx3.0/dp_rx_thread.c

+ 0 - 2
core/dp/txrx3.0/dp_rx_thread.c

@@ -657,7 +657,6 @@ static int dp_rx_refill_thread_loop(void *arg)
 		qdf_get_current_pid());
 	while (!shutdown) {
 		/* This implements the execution model algorithm */
-		dp_debug("refill thread sleeping");
 		status =
 		    qdf_wait_queue_interruptible
 				(rx_thread->wait_q,
@@ -665,7 +664,6 @@ static int dp_rx_refill_thread_loop(void *arg)
 						     &rx_thread->event_flag) ||
 				 qdf_atomic_test_bit(RX_REFILL_SUSPEND_EVENT,
 						     &rx_thread->event_flag));
-		dp_debug("refill thread woken up");
 
 		if (status == -ERESTARTSYS) {
 			QDF_DEBUG_PANIC("wait_event_interruptible returned -ERESTARTSYS");