qcacmn: change few Spectral logs to info

Change the levels of few spectral logs to
INFO so that it won't result in flood of
prints.

CRs-Fixed: 2418342 2418856
Change-Id: Id6a8eed0d5f01f7f44f3caef326b18dc5abcd959
This commit is contained in:
Edayilliam Jayadev
2019-03-19 14:42:22 +05:30
committed by nshrivas
parent 2e42a9e61c
commit 2675a77901

View File

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2011,2017-2018 The Linux Foundation. All rights reserved.
* Copyright (c) 2011,2017-2019 The Linux Foundation. All rights reserved.
*
*
* Permission to use, copy, modify, and/or distribute this software for
@@ -1613,8 +1613,9 @@ target_if_consume_spectral_report_gen3(
vdev = target_if_spectral_get_vdev(spectral);
if (!vdev) {
spectral_err("First vdev is NULL");
goto fail;
spectral_info("First vdev is NULL");
reset_160mhz_delivery_state_machine(spectral);
return -EPERM;
}
vdev_rxchainmask = wlan_vdev_mlme_get_rxchainmask(vdev);
QDF_ASSERT(vdev_rxchainmask != 0);
@@ -1751,8 +1752,9 @@ target_if_consume_spectral_report_gen3(
vdev = target_if_spectral_get_vdev(spectral);
if (!vdev) {
spectral_err("First vdev is NULL");
goto fail;
spectral_info("First vdev is NULL");
reset_160mhz_delivery_state_machine(spectral);
return -EPERM;
}
vdev_rxchainmask = wlan_vdev_mlme_get_rxchainmask(vdev);
QDF_ASSERT(vdev_rxchainmask != 0);