qcacmn: Disable excessive logging during dp init
Excessive logging during dp init causes watchdog bite when multiple init-deinit cycle is followed. Change the loglevel to debug, so that it does not flood the console with logs. CRs-Fixed: 2444944 Change-Id: I43daab413800424651e3f5edf558360886d7d7fe
This commit is contained in:

committed by
Nitesh Shrivastav

父節點
cb99026ade
當前提交
51264a63e1
@@ -678,8 +678,7 @@ int htt_srng_setup(void *htt_soc, int mac_id, void *hal_srng,
|
||||
else
|
||||
HTT_SRING_SETUP_PDEV_ID_SET(*msg_word, mac_id);
|
||||
|
||||
QDF_TRACE(QDF_MODULE_ID_TXRX, QDF_TRACE_LEVEL_INFO,
|
||||
"%s: mac_id %d", __func__, mac_id);
|
||||
dp_info("%s: mac_id %d", __func__, mac_id);
|
||||
HTT_SRING_SETUP_RING_TYPE_SET(*msg_word, htt_ring_type);
|
||||
/* TODO: Discuss with FW on changing this to unique ID and using
|
||||
* htt_ring_type to send the type of ring
|
||||
@@ -704,15 +703,10 @@ int htt_srng_setup(void *htt_soc, int mac_id, void *hal_srng,
|
||||
HTT_SRING_SETUP_ENTRY_SIZE_SET(*msg_word, ring_entry_size);
|
||||
HTT_SRING_SETUP_RING_SIZE_SET(*msg_word,
|
||||
(ring_entry_size * srng_params.num_entries));
|
||||
QDF_TRACE(QDF_MODULE_ID_TXRX, QDF_TRACE_LEVEL_INFO,
|
||||
"%s: entry_size %d", __func__,
|
||||
ring_entry_size);
|
||||
QDF_TRACE(QDF_MODULE_ID_TXRX, QDF_TRACE_LEVEL_INFO,
|
||||
"%s: num_entries %d", __func__,
|
||||
srng_params.num_entries);
|
||||
QDF_TRACE(QDF_MODULE_ID_TXRX, QDF_TRACE_LEVEL_INFO,
|
||||
"%s: ring_size %d", __func__,
|
||||
(ring_entry_size * srng_params.num_entries));
|
||||
dp_info("%s: entry_size %d", __func__, ring_entry_size);
|
||||
dp_info("%s: num_entries %d", __func__, srng_params.num_entries);
|
||||
dp_info("%s: ring_size %d", __func__,
|
||||
(ring_entry_size * srng_params.num_entries));
|
||||
if (htt_ring_type == HTT_SW_TO_HW_RING)
|
||||
HTT_SRING_SETUP_RING_MISC_CFG_FLAG_LOOPCOUNT_DISABLE_SET(
|
||||
*msg_word, 1);
|
||||
|
Reference in New Issue
Block a user