qcacmn: Reduce log level for athdiag requests

Reduce the log level from INFO to DEBUG for
athdiag read and write requests.

Change-Id: I37c3842f498ebc85386b1fa8fbb3b228eed6d9b5
CRs-Fixed: 2393714
This commit is contained in:
Venkata Sharath Chandra Manchala
2019-02-05 12:23:25 -08:00
committed by nshrivas
parent 610c0c8e41
commit 9cfe0f763d

View File

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2013-2014, 2016-2018 The Linux Foundation. All rights reserved.
* Copyright (c) 2013-2014, 2016-2019 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
@@ -90,7 +90,7 @@ static ssize_t ath_procfs_diag_read(struct file *file, char __user *buf,
(tgt_info->target_type == TARGET_TYPE_QCA6018)))) {
memtype = ((uint32_t)(*pos) & 0xff000000) >> 24;
offset = (uint32_t)(*pos) & 0xffffff;
HIF_TRACE("%s: offset 0x%x memtype 0x%x, datalen %zu\n",
HIF_DBG("%s: offset 0x%x memtype 0x%x, datalen %zu\n",
__func__, offset, memtype, count);
rv = pld_athdiag_read(scn->qdf_dev->dev,
offset, memtype, count,
@@ -166,7 +166,7 @@ static ssize_t ath_procfs_diag_write(struct file *file,
(tgt_info->target_type == TARGET_TYPE_QCA6018)))) {
memtype = ((uint32_t)(*pos) & 0xff000000) >> 24;
offset = (uint32_t)(*pos) & 0xffffff;
HIF_TRACE("%s: offset 0x%x memtype 0x%x, datalen %zu\n",
HIF_DBG("%s: offset 0x%x memtype 0x%x, datalen %zu\n",
__func__, offset, memtype, count);
rv = pld_athdiag_write(scn->qdf_dev->dev,
offset, memtype, count,