From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 3EBD946152; Fri, 31 Jan 2025 09:08:51 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 988F342D89; Fri, 31 Jan 2025 09:07:19 +0100 (CET) Received: from mx0a-0016f401.pphosted.com (mx0a-0016f401.pphosted.com [67.231.148.174]) by mails.dpdk.org (Postfix) with ESMTP id 972D842D3F for ; Fri, 31 Jan 2025 09:07:17 +0100 (CET) Received: from pps.filterd (m0431384.ppops.net [127.0.0.1]) by mx0a-0016f401.pphosted.com (8.18.1.2/8.18.1.2) with ESMTP id 50V14c1L019068 for ; Fri, 31 Jan 2025 00:07:16 -0800 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h= cc:content-transfer-encoding:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to; s=pfpt0220; bh=c YXx4JaZAJZ2ekz2bXTJKqHTanCHDJrQQB1gVPx3jr8=; b=jT91NqRbpZ77wk+VA OooV8EDFKeAvL052x69zzhsvmc3A6q3paeesSmxdssqtGAAR6pw308unsCzYVhtj tSTiH3ssau3HRYR2VtrT1vnt65l2ChnKWpNbYGNULyCqxJpF0GiJMUX6ik/SwURh //LWo3piIfEB78ClE1ZXekJhJybEBPh7QCcrzVoSttL1RhdyNwew17UiTPWjM/on 7clKTnZwN+Ergc/Txu4p/zxKrzs8/toz4c+pjpEetJfWCG7kZppjOkq0tchS329R PwKN25AZglIielobqr7GOporWDNqiohubze68rygjH4nlJQ7cmMKCHJubbvffkj3 R7Iqg== Received: from dc5-exch05.marvell.com ([199.233.59.128]) by mx0a-0016f401.pphosted.com (PPS) with ESMTPS id 44gmhnghpc-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT) for ; Fri, 31 Jan 2025 00:07:16 -0800 (PST) Received: from DC5-EXCH05.marvell.com (10.69.176.209) by DC5-EXCH05.marvell.com (10.69.176.209) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.2.1544.4; Fri, 31 Jan 2025 00:07:16 -0800 Received: from maili.marvell.com (10.69.176.80) by DC5-EXCH05.marvell.com (10.69.176.209) with Microsoft SMTP Server id 15.2.1544.4 via Frontend Transport; Fri, 31 Jan 2025 00:07:16 -0800 Received: from hyd1588t430.caveonetworks.com (unknown [10.29.52.204]) by maili.marvell.com (Postfix) with ESMTP id 65C4C3F704F; Fri, 31 Jan 2025 00:07:13 -0800 (PST) From: Nithin Dabilpuram To: , Nithin Dabilpuram , "Kiran Kumar K" , Sunil Kumar Kori , Satha Rao , Harman Kalra CC: , Srujana Challa Subject: [PATCH 32/34] common/cnxk: change the error log to a debug log Date: Fri, 31 Jan 2025 13:35:27 +0530 Message-ID: <20250131080530.3224977-32-ndabilpuram@marvell.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20250131080530.3224977-1-ndabilpuram@marvell.com> References: <20250131080530.3224977-1-ndabilpuram@marvell.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain X-Proofpoint-ORIG-GUID: rccq2Iix_r8a6ZMQHfwRPBuzCujVPyUi X-Proofpoint-GUID: rccq2Iix_r8a6ZMQHfwRPBuzCujVPyUi X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.293,Aquarius:18.0.1057,Hydra:6.0.680,FMLib:17.12.68.34 definitions=2025-01-31_03,2025-01-30_01,2024-11-22_01 X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org From: Srujana Challa This patch updates the error log to a debug log since it is not needed. Signed-off-by: Srujana Challa --- drivers/common/cnxk/roc_nix_inl_dev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/common/cnxk/roc_nix_inl_dev.c b/drivers/common/cnxk/roc_nix_inl_dev.c index 2e753440b7..376582f5db 100644 --- a/drivers/common/cnxk/roc_nix_inl_dev.c +++ b/drivers/common/cnxk/roc_nix_inl_dev.c @@ -1250,7 +1250,7 @@ roc_nix_inl_dev_qptr_get(uint8_t qid) inl_dev = idev->nix_inl_dev; if (!inl_dev) { - plt_err("Inline Device could not be detected"); + plt_nix_dbg("Inline Device could not be detected"); return NULL; } if (!inl_dev->attach_cptlf) { -- 2.34.1