* [PATCH] crypto: marvell/cesa - forward devm_ioremap_resource() error code
@ 2016-03-17 9:47 Boris Brezillon
2016-03-17 9:47 ` Boris Brezillon
2016-03-17 11:13 ` Herbert Xu
0 siblings, 2 replies; 4+ messages in thread
From: Boris Brezillon @ 2016-03-17 9:47 UTC (permalink / raw)
To: linux-arm-kernel
Forward devm_ioremap_resource() error code instead of returning
-ENOMEM.
Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com>
Reported-by: Russell King - ARM Linux <linux@arm.linux.org.uk>
Fixes: f63601fd616a ("crypto: marvell/cesa - add a new driver for Marvell's CESA")
Cc: <stable@vger.kernel.org> # 4.2+
---
drivers/crypto/marvell/cesa.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/crypto/marvell/cesa.c b/drivers/crypto/marvell/cesa.c
index c0656e7..80239ae 100644
--- a/drivers/crypto/marvell/cesa.c
+++ b/drivers/crypto/marvell/cesa.c
@@ -420,7 +420,7 @@ static int mv_cesa_probe(struct platform_device *pdev)
res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "regs");
cesa->regs = devm_ioremap_resource(dev, res);
if (IS_ERR(cesa->regs))
- return -ENOMEM;
+ return PTR_ERR(cesa->regs);
ret = mv_cesa_dev_dma_init(cesa);
if (ret)
--
2.5.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH] crypto: marvell/cesa - forward devm_ioremap_resource() error code
2016-03-17 9:47 [PATCH] crypto: marvell/cesa - forward devm_ioremap_resource() error code Boris Brezillon
@ 2016-03-17 9:47 ` Boris Brezillon
2016-03-17 9:49 ` Boris Brezillon
2016-03-17 11:13 ` Herbert Xu
1 sibling, 1 reply; 4+ messages in thread
From: Boris Brezillon @ 2016-03-17 9:47 UTC (permalink / raw)
To: linux-arm-kernel
Forward devm_ioremap_resource() error code instead of returning
-ENOMEM.
Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com>
Reported-by: Russell King - ARM Linux <linux@arm.linux.org.uk>
Fixes: f63601fd616a ("crypto: marvell/cesa - add a new driver for Marvell's CESA")
Cc: <stable@vger.kernel.org> # 4.2+
---
drivers/crypto/marvell/cesa.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/crypto/marvell/cesa.c b/drivers/crypto/marvell/cesa.c
index c0656e7..80239ae 100644
--- a/drivers/crypto/marvell/cesa.c
+++ b/drivers/crypto/marvell/cesa.c
@@ -420,7 +420,7 @@ static int mv_cesa_probe(struct platform_device *pdev)
res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "regs");
cesa->regs = devm_ioremap_resource(dev, res);
if (IS_ERR(cesa->regs))
- return -ENOMEM;
+ return PTR_ERR(cesa->regs);
ret = mv_cesa_dev_dma_init(cesa);
if (ret)
--
2.5.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH] crypto: marvell/cesa - forward devm_ioremap_resource() error code
2016-03-17 9:47 ` Boris Brezillon
@ 2016-03-17 9:49 ` Boris Brezillon
0 siblings, 0 replies; 4+ messages in thread
From: Boris Brezillon @ 2016-03-17 9:49 UTC (permalink / raw)
To: linux-arm-kernel
Sorry for the noise, just sent twice the same patch :-/.
Please ignore this one.
On Thu, 17 Mar 2016 10:47:11 +0100
Boris Brezillon <boris.brezillon@free-electrons.com> wrote:
> Forward devm_ioremap_resource() error code instead of returning
> -ENOMEM.
>
> Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com>
> Reported-by: Russell King - ARM Linux <linux@arm.linux.org.uk>
> Fixes: f63601fd616a ("crypto: marvell/cesa - add a new driver for Marvell's CESA")
> Cc: <stable@vger.kernel.org> # 4.2+
> ---
> drivers/crypto/marvell/cesa.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/crypto/marvell/cesa.c b/drivers/crypto/marvell/cesa.c
> index c0656e7..80239ae 100644
> --- a/drivers/crypto/marvell/cesa.c
> +++ b/drivers/crypto/marvell/cesa.c
> @@ -420,7 +420,7 @@ static int mv_cesa_probe(struct platform_device *pdev)
> res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "regs");
> cesa->regs = devm_ioremap_resource(dev, res);
> if (IS_ERR(cesa->regs))
> - return -ENOMEM;
> + return PTR_ERR(cesa->regs);
>
> ret = mv_cesa_dev_dma_init(cesa);
> if (ret)
--
Boris Brezillon, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH] crypto: marvell/cesa - forward devm_ioremap_resource() error code
2016-03-17 9:47 [PATCH] crypto: marvell/cesa - forward devm_ioremap_resource() error code Boris Brezillon
2016-03-17 9:47 ` Boris Brezillon
@ 2016-03-17 11:13 ` Herbert Xu
1 sibling, 0 replies; 4+ messages in thread
From: Herbert Xu @ 2016-03-17 11:13 UTC (permalink / raw)
To: linux-arm-kernel
On Thu, Mar 17, 2016 at 10:47:10AM +0100, Boris Brezillon wrote:
> Forward devm_ioremap_resource() error code instead of returning
> -ENOMEM.
>
> Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com>
> Reported-by: Russell King - ARM Linux <linux@arm.linux.org.uk>
> Fixes: f63601fd616a ("crypto: marvell/cesa - add a new driver for Marvell's CESA")
> Cc: <stable@vger.kernel.org> # 4.2+
All three patches applied. Thanks.
--
Email: Herbert Xu <herbert@gondor.apana.org.au>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2016-03-17 11:13 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-03-17 9:47 [PATCH] crypto: marvell/cesa - forward devm_ioremap_resource() error code Boris Brezillon
2016-03-17 9:47 ` Boris Brezillon
2016-03-17 9:49 ` Boris Brezillon
2016-03-17 11:13 ` Herbert Xu
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).