Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755814AbcJLQ1i (ORCPT ); Wed, 12 Oct 2016 12:27:38 -0400 Received: from mx07-00178001.pphosted.com ([62.209.51.94]:58698 "EHLO mx07-00178001.pphosted.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755721AbcJLQ1U (ORCPT ); Wed, 12 Oct 2016 12:27:20 -0400 From: Loic Pallardy To: , , CC: , , , Subject: [PATCH v3 09/20] remoteproc: core: Unify rproc_dump_resource_table debug messages Date: Wed, 12 Oct 2016 18:00:27 +0200 Message-ID: <1476288038-24909-10-git-send-email-loic.pallardy@st.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1476288038-24909-1-git-send-email-loic.pallardy@st.com> References: <1476288038-24909-1-git-send-email-loic.pallardy@st.com> MIME-Version: 1.0 Content-Type: text/plain X-Originating-IP: [10.201.23.23] X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:,, definitions=2016-10-12_09:,, signatures=0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 795 Lines: 25 For coherency with the rest of the function, mention the resource table entry when an invalid resource is detected. Signed-off-by: Loic Pallardy --- drivers/remoteproc/remoteproc_core.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/remoteproc/remoteproc_core.c b/drivers/remoteproc/remoteproc_core.c index ae8e934..7bc3cd4 100644 --- a/drivers/remoteproc/remoteproc_core.c +++ b/drivers/remoteproc/remoteproc_core.c @@ -876,8 +876,8 @@ static void rproc_dump_resource_table(struct rproc *rproc, break; default: - dev_dbg(dev, "Invalid resource type found: %d [hdr: %p]\n", - hdr->type, hdr); + dev_dbg(dev, "Entry %d: Invalid resource type found: %d [hdr: %p]\n", + i, hdr->type, hdr); return; } } -- 1.9.1