qcacld-3.0: Reduce log level of certain error logs

Reduce log level of a few error logs to reduce
excessive logging.

Change-Id: I3e93d033bc29a7dfee5c5ef18d52cded54fc1cbb
CRs-Fixed: 3035970
This commit is contained in:
Gururaj Pandurangi
2021-09-15 13:20:08 -07:00
committed by Madan Koyyalamudi
parent 062e9de50c
commit 98f9fe57f4
4 changed files with 6 additions and 6 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012-2018, 2020 The Linux Foundation. All rights reserved.
* Copyright (c) 2012-2018, 2020-2021 The Linux Foundation. All rights reserved.
*
* Permission to use, copy, modify, and/or distribute this software for
* any purpose with or without fee is hereby granted, provided that the
@@ -156,7 +156,7 @@ QDF_STATUS ucfg_action_oui_send(struct wlan_objmgr_psoc *psoc)
continue;
status = action_oui_send(psoc_priv, id);
if (!QDF_IS_STATUS_SUCCESS(status))
action_oui_err("Failed to send: %u", id);
action_oui_debug("Failed to send: %u", id);
}
exit:

View File

@@ -601,7 +601,7 @@ void hdd_enable_ns_offload(struct hdd_adapter *adapter,
/* cache ns request */
status = ucfg_pmo_cache_ns_offload_req(ns_req);
if (QDF_IS_STATUS_ERROR(status)) {
hdd_err("Failed to cache ns request; status:%d", status);
hdd_debug("Failed to cache ns request; status:%d", status);
goto free_req;
}

View File

@@ -1529,7 +1529,7 @@ static void lim_process_addba_req(struct mac_context *mac_ctx, uint8_t *rx_pkt_i
WMI_MGMT_TX_COMP_TYPE_DISCARD);
}
} else {
pe_err_rl("Failed to process addba request");
pe_debug_rl("Failed to process addba request");
}
error:

View File

@@ -3169,7 +3169,7 @@ int wma_peer_create_confirm_handler(void *handle, uint8_t *evt_param_info,
req_msg = wma_find_remove_req_msgtype(wma, peer_create_rsp->vdev_id,
WMA_PEER_CREATE_REQ);
if (!req_msg) {
wma_err("vdev:%d Failed to lookup peer create request message",
wma_debug("vdev:%d Failed to lookup peer create request msg",
peer_create_rsp->vdev_id);
return -EINVAL;
}