From 58d9594d22a609b2efb2ff647cbeb9d9a3a96f98 Mon Sep 17 00:00:00 2001 From: Daniel Perez-Zoghbi Date: Wed, 19 Jul 2023 09:18:46 -0700 Subject: [PATCH] qcedev: Remove excessive logging on failure Previously on sps_transfer failure, a fail message and descriptor information would be logged. Changed to only log a fail message. Descriptor can still be logged with QCE_DEBUG defined. Change-Id: I3dfc2d0f58ea99302a62bf3aeeaa3d3e9f587b16 Signed-off-by: Daniel Perez-Zoghbi --- crypto-qti/qce50.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/crypto-qti/qce50.c b/crypto-qti/qce50.c index f2a8de58f2..503634480c 100644 --- a/crypto-qti/qce50.c +++ b/crypto-qti/qce50.c @@ -3014,8 +3014,6 @@ static int _qce_sps_transfer(struct qce_device *pce_dev, int req_info) pr_err("sps_xfr() fail (producer pipe=0x%lx) rc = %d\n", (uintptr_t)pce_dev->ce_bam_info.producer[op].pipe, rc); ret: - if (rc) - _qce_dump_descr_fifos(pce_dev, req_info); return rc; }