All of lore.kernel.org
 help / color / mirror / Atom feed
From: Nicolas Toromanoff <nicolas.toromanoff@foss.st.com>
To: Herbert Xu <herbert@gondor.apana.org.au>,
	"David S . Miller" <davem@davemloft.net>,
	Maxime Coquelin <mcoquelin.stm32@gmail.com>,
	Alexandre Torgue <alexandre.torgue@foss.st.com>
Cc: Marek Vasut <marex@denx.de>,
	Nicolas Toromanoff <nicolas.toromanoff@foss.st.com>,
	Ard Biesheuvel <ardb@kernel.org>, <linux-crypto@vger.kernel.org>,
	<linux-stm32@st-md-mailman.stormreply.com>,
	<linux-arm-kernel@lists.infradead.org>,
	<linux-kernel@vger.kernel.org>,
	Etienne Carriere <etienne.carriere@foss.st.com>
Subject: [PATCH v4 2/9] crypto: stm32/cryp - don't print error on probe deferral
Date: Tue, 30 Nov 2021 08:54:54 +0100	[thread overview]
Message-ID: <20211130075501.21958-3-nicolas.toromanoff@foss.st.com> (raw)
In-Reply-To: <20211130075501.21958-1-nicolas.toromanoff@foss.st.com>

From: Etienne Carriere <etienne.carriere@foss.st.com>

Change driver to not print an error message when the device
probe is deferred for a clock resource.

Signed-off-by: Etienne Carriere <etienne.carriere@foss.st.com>
Signed-off-by: Nicolas Toromanoff <nicolas.toromanoff@foss.st.com>
---
 drivers/crypto/stm32/stm32-cryp.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/crypto/stm32/stm32-cryp.c b/drivers/crypto/stm32/stm32-cryp.c
index dcdd313485de..7b55ad6d2f1a 100644
--- a/drivers/crypto/stm32/stm32-cryp.c
+++ b/drivers/crypto/stm32/stm32-cryp.c
@@ -1955,7 +1955,8 @@ static int stm32_cryp_probe(struct platform_device *pdev)
 
 	cryp->clk = devm_clk_get(dev, NULL);
 	if (IS_ERR(cryp->clk)) {
-		dev_err(dev, "Could not get clock\n");
+		dev_err_probe(dev, PTR_ERR(cryp->clk), "Could not get clock\n");
+
 		return PTR_ERR(cryp->clk);
 	}
 
-- 
2.17.1


WARNING: multiple messages have this Message-ID (diff)
From: Nicolas Toromanoff <nicolas.toromanoff@foss.st.com>
To: Herbert Xu <herbert@gondor.apana.org.au>,
	"David S . Miller" <davem@davemloft.net>,
	Maxime Coquelin <mcoquelin.stm32@gmail.com>,
	Alexandre Torgue <alexandre.torgue@foss.st.com>
Cc: Marek Vasut <marex@denx.de>,
	Nicolas Toromanoff <nicolas.toromanoff@foss.st.com>,
	Ard Biesheuvel <ardb@kernel.org>, <linux-crypto@vger.kernel.org>,
	<linux-stm32@st-md-mailman.stormreply.com>,
	<linux-arm-kernel@lists.infradead.org>,
	<linux-kernel@vger.kernel.org>,
	Etienne Carriere <etienne.carriere@foss.st.com>
Subject: [PATCH v4 2/9] crypto: stm32/cryp - don't print error on probe deferral
Date: Tue, 30 Nov 2021 08:54:54 +0100	[thread overview]
Message-ID: <20211130075501.21958-3-nicolas.toromanoff@foss.st.com> (raw)
In-Reply-To: <20211130075501.21958-1-nicolas.toromanoff@foss.st.com>

From: Etienne Carriere <etienne.carriere@foss.st.com>

Change driver to not print an error message when the device
probe is deferred for a clock resource.

Signed-off-by: Etienne Carriere <etienne.carriere@foss.st.com>
Signed-off-by: Nicolas Toromanoff <nicolas.toromanoff@foss.st.com>
---
 drivers/crypto/stm32/stm32-cryp.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/crypto/stm32/stm32-cryp.c b/drivers/crypto/stm32/stm32-cryp.c
index dcdd313485de..7b55ad6d2f1a 100644
--- a/drivers/crypto/stm32/stm32-cryp.c
+++ b/drivers/crypto/stm32/stm32-cryp.c
@@ -1955,7 +1955,8 @@ static int stm32_cryp_probe(struct platform_device *pdev)
 
 	cryp->clk = devm_clk_get(dev, NULL);
 	if (IS_ERR(cryp->clk)) {
-		dev_err(dev, "Could not get clock\n");
+		dev_err_probe(dev, PTR_ERR(cryp->clk), "Could not get clock\n");
+
 		return PTR_ERR(cryp->clk);
 	}
 
-- 
2.17.1


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

  parent reply	other threads:[~2021-11-30  7:55 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-11-30  7:54 [PATCH v4 0/9] STM32 CRYP driver: many fixes Nicolas Toromanoff
2021-11-30  7:54 ` Nicolas Toromanoff
2021-11-30  7:54 ` [PATCH v4 1/9] crypto: stm32/cryp - defer probe for reset controller Nicolas Toromanoff
2021-11-30  7:54   ` Nicolas Toromanoff
2021-11-30  7:54 ` Nicolas Toromanoff [this message]
2021-11-30  7:54   ` [PATCH v4 2/9] crypto: stm32/cryp - don't print error on probe deferral Nicolas Toromanoff
2021-11-30  7:54 ` [PATCH v4 3/9] crypto: stm32/cryp - fix CTR counter carry Nicolas Toromanoff
2021-11-30  7:54   ` Nicolas Toromanoff
2021-11-30  7:54 ` [PATCH v4 4/9] crypto: stm32/cryp - fix xts and race condition in crypto_engine requests Nicolas Toromanoff
2021-11-30  7:54   ` Nicolas Toromanoff
2021-11-30  7:54 ` [PATCH v4 5/9] crypto: stm32/cryp - check early input data Nicolas Toromanoff
2021-11-30  7:54   ` Nicolas Toromanoff
2021-11-30  7:54 ` [PATCH v4 6/9] crypto: stm32/cryp - fix double pm exit Nicolas Toromanoff
2021-11-30  7:54   ` Nicolas Toromanoff
2021-11-30  7:54 ` [PATCH v4 7/9] crypto: stm32/cryp - fix lrw chaining mode Nicolas Toromanoff
2021-11-30  7:54   ` Nicolas Toromanoff
2021-11-30  7:55 ` [PATCH v4 8/9] crypto: stm32/cryp - fix bugs and crash in tests Nicolas Toromanoff
2021-11-30  7:55   ` Nicolas Toromanoff
2021-11-30  7:55 ` [PATCH v4 9/9] crypto: stm32/cryp - reorder hw initialization Nicolas Toromanoff
2021-11-30  7:55   ` Nicolas Toromanoff
2021-12-11  5:55 ` [PATCH v4 0/9] STM32 CRYP driver: many fixes Herbert Xu
2021-12-11  5:55   ` Herbert Xu

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20211130075501.21958-3-nicolas.toromanoff@foss.st.com \
    --to=nicolas.toromanoff@foss.st.com \
    --cc=alexandre.torgue@foss.st.com \
    --cc=ardb@kernel.org \
    --cc=davem@davemloft.net \
    --cc=etienne.carriere@foss.st.com \
    --cc=herbert@gondor.apana.org.au \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-crypto@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-stm32@st-md-mailman.stormreply.com \
    --cc=marex@denx.de \
    --cc=mcoquelin.stm32@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.