linux-crypto.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH -next 00/12] crypto: use devm_platform_ioremap_resource() to simplify code
@ 2019-08-02 13:27 YueHaibing
  2019-08-02 13:27 ` [PATCH -next 01/12] crypto: artpec6 - " YueHaibing
                   ` (12 more replies)
  0 siblings, 13 replies; 18+ messages in thread
From: YueHaibing @ 2019-08-02 13:27 UTC (permalink / raw)
  To: herbert, lars.persson, jesper.nilsson, davem, thomas.lendacky,
	gary.hook, krzk, kgene, antoine.tenart, matthias.bgg, jamie,
	agross, heiko, mcoquelin.stm32, alexandre.torgue,
	clabbe.montjoie, mripard, wens
  Cc: linux-kernel, linux-crypto, linux-arm-kernel, linux-samsung-soc,
	linux-arm-kernel, linux-mediatek, linux-arm-msm, linux-rockchip,
	linux-stm32, YueHaibing

devm_platform_ioremap_resource() internally have platform_get_resource()
and devm_ioremap_resource() in it. So instead of calling them separately
use devm_platform_ioremap_resource() directly.

YueHaibing (12):
  crypto: artpec6 - use devm_platform_ioremap_resource() to simplify
    code
  crypto: ccp - use devm_platform_ioremap_resource() to simplify code
  crypto: exynos - use devm_platform_ioremap_resource() to simplify code
  crypto: img-hash - use devm_platform_ioremap_resource() to simplify
    code
  crypto: inside-secure - use devm_platform_ioremap_resource() to
    simplify code
  crypto: mediatek - use devm_platform_ioremap_resource() to simplify
    code
  crypto: picoxcell - use devm_platform_ioremap_resource() to simplify
    code
  crypto: sunxi-ss - use devm_platform_ioremap_resource() to simplify
    code
  crypto: rockchip - use devm_platform_ioremap_resource() to simplify
    code
  crypto: stm32 - use devm_platform_ioremap_resource() to simplify code
  crypto: qce - use devm_platform_ioremap_resource() to simplify code
  crypto: qcom-rng - use devm_platform_ioremap_resource() to simplify
    code

 drivers/crypto/axis/artpec6_crypto.c    | 4 +---
 drivers/crypto/ccp/sp-platform.c        | 4 +---
 drivers/crypto/exynos-rng.c             | 4 +---
 drivers/crypto/img-hash.c               | 4 +---
 drivers/crypto/inside-secure/safexcel.c | 4 +---
 drivers/crypto/mediatek/mtk-platform.c  | 3 +--
 drivers/crypto/picoxcell_crypto.c       | 5 ++---
 drivers/crypto/qce/core.c               | 4 +---
 drivers/crypto/qcom-rng.c               | 4 +---
 drivers/crypto/rockchip/rk3288_crypto.c | 4 +---
 drivers/crypto/stm32/stm32-crc32.c      | 4 +---
 drivers/crypto/stm32/stm32-cryp.c       | 4 +---
 drivers/crypto/sunxi-ss/sun4i-ss-core.c | 4 +---
 13 files changed, 14 insertions(+), 38 deletions(-)

-- 
2.7.4



^ permalink raw reply	[flat|nested] 18+ messages in thread

* [PATCH -next 01/12] crypto: artpec6 - use devm_platform_ioremap_resource() to simplify code
  2019-08-02 13:27 [PATCH -next 00/12] crypto: use devm_platform_ioremap_resource() to simplify code YueHaibing
@ 2019-08-02 13:27 ` YueHaibing
  2019-08-02 13:27 ` [PATCH -next 02/12] crypto: ccp " YueHaibing
                   ` (11 subsequent siblings)
  12 siblings, 0 replies; 18+ messages in thread
From: YueHaibing @ 2019-08-02 13:27 UTC (permalink / raw)
  To: herbert, lars.persson, jesper.nilsson, davem, thomas.lendacky,
	gary.hook, krzk, kgene, antoine.tenart, matthias.bgg, jamie,
	agross, heiko, mcoquelin.stm32, alexandre.torgue,
	clabbe.montjoie, mripard, wens
  Cc: linux-kernel, linux-crypto, linux-arm-kernel, linux-samsung-soc,
	linux-arm-kernel, linux-mediatek, linux-arm-msm, linux-rockchip,
	linux-stm32, YueHaibing

Use devm_platform_ioremap_resource() to simplify the code a bit.
This is detected by coccinelle.

Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: YueHaibing <yuehaibing@huawei.com>
---
 drivers/crypto/axis/artpec6_crypto.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/drivers/crypto/axis/artpec6_crypto.c b/drivers/crypto/axis/artpec6_crypto.c
index 80fa04e..4b20606 100644
--- a/drivers/crypto/axis/artpec6_crypto.c
+++ b/drivers/crypto/axis/artpec6_crypto.c
@@ -2854,7 +2854,6 @@ static int artpec6_crypto_probe(struct platform_device *pdev)
 	struct artpec6_crypto *ac;
 	struct device *dev = &pdev->dev;
 	void __iomem *base;
-	struct resource *res;
 	int irq;
 	int err;
 
@@ -2867,8 +2866,7 @@ static int artpec6_crypto_probe(struct platform_device *pdev)
 
 	variant = (enum artpec6_crypto_variant)match->data;
 
-	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-	base = devm_ioremap_resource(&pdev->dev, res);
+	base = devm_platform_ioremap_resource(pdev, 0);
 	if (IS_ERR(base))
 		return PTR_ERR(base);
 
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [PATCH -next 02/12] crypto: ccp - use devm_platform_ioremap_resource() to simplify code
  2019-08-02 13:27 [PATCH -next 00/12] crypto: use devm_platform_ioremap_resource() to simplify code YueHaibing
  2019-08-02 13:27 ` [PATCH -next 01/12] crypto: artpec6 - " YueHaibing
@ 2019-08-02 13:27 ` YueHaibing
  2019-08-02 13:28 ` [PATCH -next 03/12] crypto: exynos " YueHaibing
                   ` (10 subsequent siblings)
  12 siblings, 0 replies; 18+ messages in thread
From: YueHaibing @ 2019-08-02 13:27 UTC (permalink / raw)
  To: herbert, lars.persson, jesper.nilsson, davem, thomas.lendacky,
	gary.hook, krzk, kgene, antoine.tenart, matthias.bgg, jamie,
	agross, heiko, mcoquelin.stm32, alexandre.torgue,
	clabbe.montjoie, mripard, wens
  Cc: linux-kernel, linux-crypto, linux-arm-kernel, linux-samsung-soc,
	linux-arm-kernel, linux-mediatek, linux-arm-msm, linux-rockchip,
	linux-stm32, YueHaibing

Use devm_platform_ioremap_resource() to simplify the code a bit.
This is detected by coccinelle.

Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: YueHaibing <yuehaibing@huawei.com>
---
 drivers/crypto/ccp/sp-platform.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/drivers/crypto/ccp/sp-platform.c b/drivers/crypto/ccp/sp-platform.c
index 1b45236..831aac1 100644
--- a/drivers/crypto/ccp/sp-platform.c
+++ b/drivers/crypto/ccp/sp-platform.c
@@ -125,7 +125,6 @@ static int sp_platform_probe(struct platform_device *pdev)
 	struct sp_platform *sp_platform;
 	struct device *dev = &pdev->dev;
 	enum dev_dma_attr attr;
-	struct resource *ior;
 	int ret;
 
 	ret = -ENOMEM;
@@ -146,8 +145,7 @@ static int sp_platform_probe(struct platform_device *pdev)
 		goto e_err;
 	}
 
-	ior = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-	sp->io_map = devm_ioremap_resource(dev, ior);
+	sp->io_map = devm_platform_ioremap_resource(pdev, 0);
 	if (IS_ERR(sp->io_map)) {
 		ret = PTR_ERR(sp->io_map);
 		goto e_err;
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [PATCH -next 03/12] crypto: exynos - use devm_platform_ioremap_resource() to simplify code
  2019-08-02 13:27 [PATCH -next 00/12] crypto: use devm_platform_ioremap_resource() to simplify code YueHaibing
  2019-08-02 13:27 ` [PATCH -next 01/12] crypto: artpec6 - " YueHaibing
  2019-08-02 13:27 ` [PATCH -next 02/12] crypto: ccp " YueHaibing
@ 2019-08-02 13:28 ` YueHaibing
  2019-08-05  9:18   ` Krzysztof Kozlowski
  2019-08-02 13:28 ` [PATCH -next 04/12] crypto: img-hash " YueHaibing
                   ` (9 subsequent siblings)
  12 siblings, 1 reply; 18+ messages in thread
From: YueHaibing @ 2019-08-02 13:28 UTC (permalink / raw)
  To: herbert, lars.persson, jesper.nilsson, davem, thomas.lendacky,
	gary.hook, krzk, kgene, antoine.tenart, matthias.bgg, jamie,
	agross, heiko, mcoquelin.stm32, alexandre.torgue,
	clabbe.montjoie, mripard, wens
  Cc: linux-kernel, linux-crypto, linux-arm-kernel, linux-samsung-soc,
	linux-arm-kernel, linux-mediatek, linux-arm-msm, linux-rockchip,
	linux-stm32, YueHaibing

Use devm_platform_ioremap_resource() to simplify the code a bit.
This is detected by coccinelle.

Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: YueHaibing <yuehaibing@huawei.com>
---
 drivers/crypto/exynos-rng.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/drivers/crypto/exynos-rng.c b/drivers/crypto/exynos-rng.c
index 2cfabb9..cbd8ca6 100644
--- a/drivers/crypto/exynos-rng.c
+++ b/drivers/crypto/exynos-rng.c
@@ -268,7 +268,6 @@ static struct rng_alg exynos_rng_alg = {
 static int exynos_rng_probe(struct platform_device *pdev)
 {
 	struct exynos_rng_dev *rng;
-	struct resource *res;
 	int ret;
 
 	if (exynos_rng_dev)
@@ -289,8 +288,7 @@ static int exynos_rng_probe(struct platform_device *pdev)
 		return PTR_ERR(rng->clk);
 	}
 
-	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-	rng->mem = devm_ioremap_resource(&pdev->dev, res);
+	rng->mem = devm_platform_ioremap_resource(pdev, 0);
 	if (IS_ERR(rng->mem))
 		return PTR_ERR(rng->mem);
 
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [PATCH -next 04/12] crypto: img-hash - use devm_platform_ioremap_resource() to simplify code
  2019-08-02 13:27 [PATCH -next 00/12] crypto: use devm_platform_ioremap_resource() to simplify code YueHaibing
                   ` (2 preceding siblings ...)
  2019-08-02 13:28 ` [PATCH -next 03/12] crypto: exynos " YueHaibing
@ 2019-08-02 13:28 ` YueHaibing
  2019-08-02 13:28 ` [PATCH -next 05/12] crypto: inside-secure " YueHaibing
                   ` (8 subsequent siblings)
  12 siblings, 0 replies; 18+ messages in thread
From: YueHaibing @ 2019-08-02 13:28 UTC (permalink / raw)
  To: herbert, lars.persson, jesper.nilsson, davem, thomas.lendacky,
	gary.hook, krzk, kgene, antoine.tenart, matthias.bgg, jamie,
	agross, heiko, mcoquelin.stm32, alexandre.torgue,
	clabbe.montjoie, mripard, wens
  Cc: linux-kernel, linux-crypto, linux-arm-kernel, linux-samsung-soc,
	linux-arm-kernel, linux-mediatek, linux-arm-msm, linux-rockchip,
	linux-stm32, YueHaibing

Use devm_platform_ioremap_resource() to simplify the code a bit.
This is detected by coccinelle.

Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: YueHaibing <yuehaibing@huawei.com>
---
 drivers/crypto/img-hash.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/drivers/crypto/img-hash.c b/drivers/crypto/img-hash.c
index d27c812..f5a71fa 100644
--- a/drivers/crypto/img-hash.c
+++ b/drivers/crypto/img-hash.c
@@ -958,9 +958,7 @@ static int img_hash_probe(struct platform_device *pdev)
 	crypto_init_queue(&hdev->queue, IMG_HASH_QUEUE_LENGTH);
 
 	/* Register bank */
-	hash_res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-
-	hdev->io_base = devm_ioremap_resource(dev, hash_res);
+	hdev->io_base = devm_platform_ioremap_resource(pdev, 0);
 	if (IS_ERR(hdev->io_base)) {
 		err = PTR_ERR(hdev->io_base);
 		dev_err(dev, "can't ioremap, returned %d\n", err);
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [PATCH -next 05/12] crypto: inside-secure - use devm_platform_ioremap_resource() to simplify code
  2019-08-02 13:27 [PATCH -next 00/12] crypto: use devm_platform_ioremap_resource() to simplify code YueHaibing
                   ` (3 preceding siblings ...)
  2019-08-02 13:28 ` [PATCH -next 04/12] crypto: img-hash " YueHaibing
@ 2019-08-02 13:28 ` YueHaibing
  2019-08-02 16:17   ` Antoine Tenart
  2019-08-02 13:28 ` [PATCH -next 06/12] crypto: mediatek " YueHaibing
                   ` (7 subsequent siblings)
  12 siblings, 1 reply; 18+ messages in thread
From: YueHaibing @ 2019-08-02 13:28 UTC (permalink / raw)
  To: herbert, lars.persson, jesper.nilsson, davem, thomas.lendacky,
	gary.hook, krzk, kgene, antoine.tenart, matthias.bgg, jamie,
	agross, heiko, mcoquelin.stm32, alexandre.torgue,
	clabbe.montjoie, mripard, wens
  Cc: linux-kernel, linux-crypto, linux-arm-kernel, linux-samsung-soc,
	linux-arm-kernel, linux-mediatek, linux-arm-msm, linux-rockchip,
	linux-stm32, YueHaibing

Use devm_platform_ioremap_resource() to simplify the code a bit.
This is detected by coccinelle.

Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: YueHaibing <yuehaibing@huawei.com>
---
 drivers/crypto/inside-secure/safexcel.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/drivers/crypto/inside-secure/safexcel.c b/drivers/crypto/inside-secure/safexcel.c
index d1f60fd..822744d 100644
--- a/drivers/crypto/inside-secure/safexcel.c
+++ b/drivers/crypto/inside-secure/safexcel.c
@@ -999,7 +999,6 @@ static void safexcel_init_register_offsets(struct safexcel_crypto_priv *priv)
 static int safexcel_probe(struct platform_device *pdev)
 {
 	struct device *dev = &pdev->dev;
-	struct resource *res;
 	struct safexcel_crypto_priv *priv;
 	int i, ret;
 
@@ -1015,8 +1014,7 @@ static int safexcel_probe(struct platform_device *pdev)
 
 	safexcel_init_register_offsets(priv);
 
-	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-	priv->base = devm_ioremap_resource(dev, res);
+	priv->base = devm_platform_ioremap_resource(pdev, 0);
 	if (IS_ERR(priv->base)) {
 		dev_err(dev, "failed to get resource\n");
 		return PTR_ERR(priv->base);
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [PATCH -next 06/12] crypto: mediatek - use devm_platform_ioremap_resource() to simplify code
  2019-08-02 13:27 [PATCH -next 00/12] crypto: use devm_platform_ioremap_resource() to simplify code YueHaibing
                   ` (4 preceding siblings ...)
  2019-08-02 13:28 ` [PATCH -next 05/12] crypto: inside-secure " YueHaibing
@ 2019-08-02 13:28 ` YueHaibing
  2019-08-02 13:28 ` [PATCH -next 07/12] crypto: picoxcell " YueHaibing
                   ` (6 subsequent siblings)
  12 siblings, 0 replies; 18+ messages in thread
From: YueHaibing @ 2019-08-02 13:28 UTC (permalink / raw)
  To: herbert, lars.persson, jesper.nilsson, davem, thomas.lendacky,
	gary.hook, krzk, kgene, antoine.tenart, matthias.bgg, jamie,
	agross, heiko, mcoquelin.stm32, alexandre.torgue,
	clabbe.montjoie, mripard, wens
  Cc: linux-kernel, linux-crypto, linux-arm-kernel, linux-samsung-soc,
	linux-arm-kernel, linux-mediatek, linux-arm-msm, linux-rockchip,
	linux-stm32, YueHaibing

Use devm_platform_ioremap_resource() to simplify the code a bit.
This is detected by coccinelle.

Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: YueHaibing <yuehaibing@huawei.com>
---
 drivers/crypto/mediatek/mtk-platform.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/crypto/mediatek/mtk-platform.c b/drivers/crypto/mediatek/mtk-platform.c
index 125318a..12462136 100644
--- a/drivers/crypto/mediatek/mtk-platform.c
+++ b/drivers/crypto/mediatek/mtk-platform.c
@@ -481,7 +481,6 @@ static int mtk_desc_ring_alloc(struct mtk_cryp *cryp)
 
 static int mtk_crypto_probe(struct platform_device *pdev)
 {
-	struct resource *res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
 	struct mtk_cryp *cryp;
 	int i, err;
 
@@ -489,7 +488,7 @@ static int mtk_crypto_probe(struct platform_device *pdev)
 	if (!cryp)
 		return -ENOMEM;
 
-	cryp->base = devm_ioremap_resource(&pdev->dev, res);
+	cryp->base = devm_platform_ioremap_resource(pdev, 0);
 	if (IS_ERR(cryp->base))
 		return PTR_ERR(cryp->base);
 
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [PATCH -next 07/12] crypto: picoxcell - use devm_platform_ioremap_resource() to simplify code
  2019-08-02 13:27 [PATCH -next 00/12] crypto: use devm_platform_ioremap_resource() to simplify code YueHaibing
                   ` (5 preceding siblings ...)
  2019-08-02 13:28 ` [PATCH -next 06/12] crypto: mediatek " YueHaibing
@ 2019-08-02 13:28 ` YueHaibing
  2019-08-03 14:13   ` Jamie Iles
  2019-08-02 13:28 ` [PATCH -next 08/12] crypto: sunxi-ss " YueHaibing
                   ` (5 subsequent siblings)
  12 siblings, 1 reply; 18+ messages in thread
From: YueHaibing @ 2019-08-02 13:28 UTC (permalink / raw)
  To: herbert, lars.persson, jesper.nilsson, davem, thomas.lendacky,
	gary.hook, krzk, kgene, antoine.tenart, matthias.bgg, jamie,
	agross, heiko, mcoquelin.stm32, alexandre.torgue,
	clabbe.montjoie, mripard, wens
  Cc: linux-kernel, linux-crypto, linux-arm-kernel, linux-samsung-soc,
	linux-arm-kernel, linux-mediatek, linux-arm-msm, linux-rockchip,
	linux-stm32, YueHaibing

Use devm_platform_ioremap_resource() to simplify the code a bit.
This is detected by coccinelle.

Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: YueHaibing <yuehaibing@huawei.com>
---
 drivers/crypto/picoxcell_crypto.c | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/drivers/crypto/picoxcell_crypto.c b/drivers/crypto/picoxcell_crypto.c
index b985cb85..9a939b4 100644
--- a/drivers/crypto/picoxcell_crypto.c
+++ b/drivers/crypto/picoxcell_crypto.c
@@ -1624,7 +1624,7 @@ MODULE_DEVICE_TABLE(of, spacc_of_id_table);
 static int spacc_probe(struct platform_device *pdev)
 {
 	int i, err, ret;
-	struct resource *mem, *irq;
+	struct resource *irq;
 	struct device_node *np = pdev->dev.of_node;
 	struct spacc_engine *engine = devm_kzalloc(&pdev->dev, sizeof(*engine),
 						   GFP_KERNEL);
@@ -1653,8 +1653,7 @@ static int spacc_probe(struct platform_device *pdev)
 
 	engine->name = dev_name(&pdev->dev);
 
-	mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-	engine->regs = devm_ioremap_resource(&pdev->dev, mem);
+	engine->regs = devm_platform_ioremap_resource(pdev, 0);
 	if (IS_ERR(engine->regs))
 		return PTR_ERR(engine->regs);
 
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [PATCH -next 08/12] crypto: sunxi-ss - use devm_platform_ioremap_resource() to simplify code
  2019-08-02 13:27 [PATCH -next 00/12] crypto: use devm_platform_ioremap_resource() to simplify code YueHaibing
                   ` (6 preceding siblings ...)
  2019-08-02 13:28 ` [PATCH -next 07/12] crypto: picoxcell " YueHaibing
@ 2019-08-02 13:28 ` YueHaibing
  2019-08-02 13:28 ` [PATCH -next 09/12] crypto: rockchip " YueHaibing
                   ` (4 subsequent siblings)
  12 siblings, 0 replies; 18+ messages in thread
From: YueHaibing @ 2019-08-02 13:28 UTC (permalink / raw)
  To: herbert, lars.persson, jesper.nilsson, davem, thomas.lendacky,
	gary.hook, krzk, kgene, antoine.tenart, matthias.bgg, jamie,
	agross, heiko, mcoquelin.stm32, alexandre.torgue,
	clabbe.montjoie, mripard, wens
  Cc: linux-kernel, linux-crypto, linux-arm-kernel, linux-samsung-soc,
	linux-arm-kernel, linux-mediatek, linux-arm-msm, linux-rockchip,
	linux-stm32, YueHaibing

Use devm_platform_ioremap_resource() to simplify the code a bit.
This is detected by coccinelle.

Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: YueHaibing <yuehaibing@huawei.com>
---
 drivers/crypto/sunxi-ss/sun4i-ss-core.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/drivers/crypto/sunxi-ss/sun4i-ss-core.c b/drivers/crypto/sunxi-ss/sun4i-ss-core.c
index 2e87042..9aa6fe0 100644
--- a/drivers/crypto/sunxi-ss/sun4i-ss-core.c
+++ b/drivers/crypto/sunxi-ss/sun4i-ss-core.c
@@ -225,7 +225,6 @@ static struct sun4i_ss_alg_template ss_algs[] = {
 
 static int sun4i_ss_probe(struct platform_device *pdev)
 {
-	struct resource *res;
 	u32 v;
 	int err, i;
 	unsigned long cr;
@@ -240,8 +239,7 @@ static int sun4i_ss_probe(struct platform_device *pdev)
 	if (!ss)
 		return -ENOMEM;
 
-	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-	ss->base = devm_ioremap_resource(&pdev->dev, res);
+	ss->base = devm_platform_ioremap_resource(pdev, 0);
 	if (IS_ERR(ss->base)) {
 		dev_err(&pdev->dev, "Cannot request MMIO\n");
 		return PTR_ERR(ss->base);
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [PATCH -next 09/12] crypto: rockchip - use devm_platform_ioremap_resource() to simplify code
  2019-08-02 13:27 [PATCH -next 00/12] crypto: use devm_platform_ioremap_resource() to simplify code YueHaibing
                   ` (7 preceding siblings ...)
  2019-08-02 13:28 ` [PATCH -next 08/12] crypto: sunxi-ss " YueHaibing
@ 2019-08-02 13:28 ` YueHaibing
  2019-08-02 16:09   ` Heiko Stuebner
  2019-08-02 13:28 ` [PATCH -next 10/12] crypto: stm32 " YueHaibing
                   ` (3 subsequent siblings)
  12 siblings, 1 reply; 18+ messages in thread
From: YueHaibing @ 2019-08-02 13:28 UTC (permalink / raw)
  To: herbert, lars.persson, jesper.nilsson, davem, thomas.lendacky,
	gary.hook, krzk, kgene, antoine.tenart, matthias.bgg, jamie,
	agross, heiko, mcoquelin.stm32, alexandre.torgue,
	clabbe.montjoie, mripard, wens
  Cc: linux-kernel, linux-crypto, linux-arm-kernel, linux-samsung-soc,
	linux-arm-kernel, linux-mediatek, linux-arm-msm, linux-rockchip,
	linux-stm32, YueHaibing

Use devm_platform_ioremap_resource() to simplify the code a bit.
This is detected by coccinelle.

Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: YueHaibing <yuehaibing@huawei.com>
---
 drivers/crypto/rockchip/rk3288_crypto.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/drivers/crypto/rockchip/rk3288_crypto.c b/drivers/crypto/rockchip/rk3288_crypto.c
index 8d7e254..e5714ef 100644
--- a/drivers/crypto/rockchip/rk3288_crypto.c
+++ b/drivers/crypto/rockchip/rk3288_crypto.c
@@ -311,7 +311,6 @@ MODULE_DEVICE_TABLE(of, crypto_of_id_table);
 
 static int rk_crypto_probe(struct platform_device *pdev)
 {
-	struct resource *res;
 	struct device *dev = &pdev->dev;
 	struct rk_crypto_info *crypto_info;
 	int err = 0;
@@ -339,8 +338,7 @@ static int rk_crypto_probe(struct platform_device *pdev)
 
 	spin_lock_init(&crypto_info->lock);
 
-	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-	crypto_info->reg = devm_ioremap_resource(&pdev->dev, res);
+	crypto_info->reg = devm_platform_ioremap_resource(pdev, 0);
 	if (IS_ERR(crypto_info->reg)) {
 		err = PTR_ERR(crypto_info->reg);
 		goto err_crypto;
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [PATCH -next 10/12] crypto: stm32 - use devm_platform_ioremap_resource() to simplify code
  2019-08-02 13:27 [PATCH -next 00/12] crypto: use devm_platform_ioremap_resource() to simplify code YueHaibing
                   ` (8 preceding siblings ...)
  2019-08-02 13:28 ` [PATCH -next 09/12] crypto: rockchip " YueHaibing
@ 2019-08-02 13:28 ` YueHaibing
  2019-08-02 13:28 ` [PATCH -next 11/12] crypto: qce " YueHaibing
                   ` (2 subsequent siblings)
  12 siblings, 0 replies; 18+ messages in thread
From: YueHaibing @ 2019-08-02 13:28 UTC (permalink / raw)
  To: herbert, lars.persson, jesper.nilsson, davem, thomas.lendacky,
	gary.hook, krzk, kgene, antoine.tenart, matthias.bgg, jamie,
	agross, heiko, mcoquelin.stm32, alexandre.torgue,
	clabbe.montjoie, mripard, wens
  Cc: linux-kernel, linux-crypto, linux-arm-kernel, linux-samsung-soc,
	linux-arm-kernel, linux-mediatek, linux-arm-msm, linux-rockchip,
	linux-stm32, YueHaibing

Use devm_platform_ioremap_resource() to simplify the code a bit.
This is detected by coccinelle.

Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: YueHaibing <yuehaibing@huawei.com>
---
 drivers/crypto/stm32/stm32-crc32.c | 4 +---
 drivers/crypto/stm32/stm32-cryp.c  | 4 +---
 2 files changed, 2 insertions(+), 6 deletions(-)

diff --git a/drivers/crypto/stm32/stm32-crc32.c b/drivers/crypto/stm32/stm32-crc32.c
index 440c9f1..9e11c34 100644
--- a/drivers/crypto/stm32/stm32-crc32.c
+++ b/drivers/crypto/stm32/stm32-crc32.c
@@ -255,7 +255,6 @@ static int stm32_crc_probe(struct platform_device *pdev)
 {
 	struct device *dev = &pdev->dev;
 	struct stm32_crc *crc;
-	struct resource *res;
 	int ret;
 
 	crc = devm_kzalloc(dev, sizeof(*crc), GFP_KERNEL);
@@ -264,8 +263,7 @@ static int stm32_crc_probe(struct platform_device *pdev)
 
 	crc->dev = dev;
 
-	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-	crc->regs = devm_ioremap_resource(dev, res);
+	crc->regs = devm_platform_ioremap_resource(pdev, 0);
 	if (IS_ERR(crc->regs)) {
 		dev_err(dev, "Cannot map CRC IO\n");
 		return PTR_ERR(crc->regs);
diff --git a/drivers/crypto/stm32/stm32-cryp.c b/drivers/crypto/stm32/stm32-cryp.c
index 98ae028..2fe6f26 100644
--- a/drivers/crypto/stm32/stm32-cryp.c
+++ b/drivers/crypto/stm32/stm32-cryp.c
@@ -1955,7 +1955,6 @@ static int stm32_cryp_probe(struct platform_device *pdev)
 {
 	struct device *dev = &pdev->dev;
 	struct stm32_cryp *cryp;
-	struct resource *res;
 	struct reset_control *rst;
 	int irq, ret;
 
@@ -1969,8 +1968,7 @@ static int stm32_cryp_probe(struct platform_device *pdev)
 
 	cryp->dev = dev;
 
-	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-	cryp->regs = devm_ioremap_resource(dev, res);
+	cryp->regs = devm_platform_ioremap_resource(pdev, 0);
 	if (IS_ERR(cryp->regs))
 		return PTR_ERR(cryp->regs);
 
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [PATCH -next 11/12] crypto: qce - use devm_platform_ioremap_resource() to simplify code
  2019-08-02 13:27 [PATCH -next 00/12] crypto: use devm_platform_ioremap_resource() to simplify code YueHaibing
                   ` (9 preceding siblings ...)
  2019-08-02 13:28 ` [PATCH -next 10/12] crypto: stm32 " YueHaibing
@ 2019-08-02 13:28 ` YueHaibing
  2019-08-02 13:28 ` [PATCH -next 12/12] crypto: qcom-rng " YueHaibing
  2019-08-09  6:20 ` [PATCH -next 00/12] crypto: " Herbert Xu
  12 siblings, 0 replies; 18+ messages in thread
From: YueHaibing @ 2019-08-02 13:28 UTC (permalink / raw)
  To: herbert, lars.persson, jesper.nilsson, davem, thomas.lendacky,
	gary.hook, krzk, kgene, antoine.tenart, matthias.bgg, jamie,
	agross, heiko, mcoquelin.stm32, alexandre.torgue,
	clabbe.montjoie, mripard, wens
  Cc: linux-kernel, linux-crypto, linux-arm-kernel, linux-samsung-soc,
	linux-arm-kernel, linux-mediatek, linux-arm-msm, linux-rockchip,
	linux-stm32, YueHaibing

Use devm_platform_ioremap_resource() to simplify the code a bit.
This is detected by coccinelle.

Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: YueHaibing <yuehaibing@huawei.com>
---
 drivers/crypto/qce/core.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/drivers/crypto/qce/core.c b/drivers/crypto/qce/core.c
index ef1d74e..08d4ce3 100644
--- a/drivers/crypto/qce/core.c
+++ b/drivers/crypto/qce/core.c
@@ -167,7 +167,6 @@ static int qce_crypto_probe(struct platform_device *pdev)
 {
 	struct device *dev = &pdev->dev;
 	struct qce_device *qce;
-	struct resource *res;
 	int ret;
 
 	qce = devm_kzalloc(dev, sizeof(*qce), GFP_KERNEL);
@@ -177,8 +176,7 @@ static int qce_crypto_probe(struct platform_device *pdev)
 	qce->dev = dev;
 	platform_set_drvdata(pdev, qce);
 
-	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-	qce->base = devm_ioremap_resource(&pdev->dev, res);
+	qce->base = devm_platform_ioremap_resource(pdev, 0);
 	if (IS_ERR(qce->base))
 		return PTR_ERR(qce->base);
 
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [PATCH -next 12/12] crypto: qcom-rng - use devm_platform_ioremap_resource() to simplify code
  2019-08-02 13:27 [PATCH -next 00/12] crypto: use devm_platform_ioremap_resource() to simplify code YueHaibing
                   ` (10 preceding siblings ...)
  2019-08-02 13:28 ` [PATCH -next 11/12] crypto: qce " YueHaibing
@ 2019-08-02 13:28 ` YueHaibing
  2019-08-09  6:20 ` [PATCH -next 00/12] crypto: " Herbert Xu
  12 siblings, 0 replies; 18+ messages in thread
From: YueHaibing @ 2019-08-02 13:28 UTC (permalink / raw)
  To: herbert, lars.persson, jesper.nilsson, davem, thomas.lendacky,
	gary.hook, krzk, kgene, antoine.tenart, matthias.bgg, jamie,
	agross, heiko, mcoquelin.stm32, alexandre.torgue,
	clabbe.montjoie, mripard, wens
  Cc: linux-kernel, linux-crypto, linux-arm-kernel, linux-samsung-soc,
	linux-arm-kernel, linux-mediatek, linux-arm-msm, linux-rockchip,
	linux-stm32, YueHaibing

Use devm_platform_ioremap_resource() to simplify the code a bit.
This is detected by coccinelle.

Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: YueHaibing <yuehaibing@huawei.com>
---
 drivers/crypto/qcom-rng.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/drivers/crypto/qcom-rng.c b/drivers/crypto/qcom-rng.c
index e54249c..4730f84 100644
--- a/drivers/crypto/qcom-rng.c
+++ b/drivers/crypto/qcom-rng.c
@@ -153,7 +153,6 @@ static struct rng_alg qcom_rng_alg = {
 
 static int qcom_rng_probe(struct platform_device *pdev)
 {
-	struct resource *res;
 	struct qcom_rng *rng;
 	int ret;
 
@@ -164,8 +163,7 @@ static int qcom_rng_probe(struct platform_device *pdev)
 	platform_set_drvdata(pdev, rng);
 	mutex_init(&rng->lock);
 
-	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-	rng->base = devm_ioremap_resource(&pdev->dev, res);
+	rng->base = devm_platform_ioremap_resource(pdev, 0);
 	if (IS_ERR(rng->base))
 		return PTR_ERR(rng->base);
 
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 18+ messages in thread

* Re: [PATCH -next 09/12] crypto: rockchip - use devm_platform_ioremap_resource() to simplify code
  2019-08-02 13:28 ` [PATCH -next 09/12] crypto: rockchip " YueHaibing
@ 2019-08-02 16:09   ` Heiko Stuebner
  0 siblings, 0 replies; 18+ messages in thread
From: Heiko Stuebner @ 2019-08-02 16:09 UTC (permalink / raw)
  To: YueHaibing
  Cc: herbert, lars.persson, jesper.nilsson, davem, thomas.lendacky,
	gary.hook, krzk, kgene, antoine.tenart, matthias.bgg, jamie,
	agross, mcoquelin.stm32, alexandre.torgue, clabbe.montjoie,
	mripard, wens, linux-kernel, linux-crypto, linux-arm-kernel,
	linux-samsung-soc, linux-arm-kernel, linux-mediatek,
	linux-arm-msm, linux-rockchip, linux-stm32

Am Freitag, 2. August 2019, 15:28:06 CEST schrieb YueHaibing:
> Use devm_platform_ioremap_resource() to simplify the code a bit.
> This is detected by coccinelle.
> 
> Reported-by: Hulk Robot <hulkci@huawei.com>
> Signed-off-by: YueHaibing <yuehaibing@huawei.com>

looks like nice and simple improvement
Reviewed-by: Heiko Stuebner <heiko@sntech.de>

Thanks
Heiko



^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [PATCH -next 05/12] crypto: inside-secure - use devm_platform_ioremap_resource() to simplify code
  2019-08-02 13:28 ` [PATCH -next 05/12] crypto: inside-secure " YueHaibing
@ 2019-08-02 16:17   ` Antoine Tenart
  0 siblings, 0 replies; 18+ messages in thread
From: Antoine Tenart @ 2019-08-02 16:17 UTC (permalink / raw)
  To: YueHaibing
  Cc: herbert, lars.persson, jesper.nilsson, davem, thomas.lendacky,
	gary.hook, krzk, kgene, antoine.tenart, matthias.bgg, jamie,
	agross, heiko, mcoquelin.stm32, alexandre.torgue,
	clabbe.montjoie, mripard, wens, linux-kernel, linux-crypto,
	linux-arm-kernel, linux-samsung-soc, linux-arm-kernel,
	linux-mediatek, linux-arm-msm, linux-rockchip, linux-stm32

Hello,

On Fri, Aug 02, 2019 at 09:28:02PM +0800, YueHaibing wrote:
> Use devm_platform_ioremap_resource() to simplify the code a bit.
> This is detected by coccinelle.
> 
> Reported-by: Hulk Robot <hulkci@huawei.com>
> Signed-off-by: YueHaibing <yuehaibing@huawei.com>

Acked-by: Antoine Tenart <antoine.tenart@bootlin.com>

Thanks,
Antoine

> ---
>  drivers/crypto/inside-secure/safexcel.c | 4 +---
>  1 file changed, 1 insertion(+), 3 deletions(-)
> 
> diff --git a/drivers/crypto/inside-secure/safexcel.c b/drivers/crypto/inside-secure/safexcel.c
> index d1f60fd..822744d 100644
> --- a/drivers/crypto/inside-secure/safexcel.c
> +++ b/drivers/crypto/inside-secure/safexcel.c
> @@ -999,7 +999,6 @@ static void safexcel_init_register_offsets(struct safexcel_crypto_priv *priv)
>  static int safexcel_probe(struct platform_device *pdev)
>  {
>  	struct device *dev = &pdev->dev;
> -	struct resource *res;
>  	struct safexcel_crypto_priv *priv;
>  	int i, ret;
>  
> @@ -1015,8 +1014,7 @@ static int safexcel_probe(struct platform_device *pdev)
>  
>  	safexcel_init_register_offsets(priv);
>  
> -	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> -	priv->base = devm_ioremap_resource(dev, res);
> +	priv->base = devm_platform_ioremap_resource(pdev, 0);
>  	if (IS_ERR(priv->base)) {
>  		dev_err(dev, "failed to get resource\n");
>  		return PTR_ERR(priv->base);
> -- 
> 2.7.4
> 
> 

-- 
Antoine Ténart, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [PATCH -next 07/12] crypto: picoxcell - use devm_platform_ioremap_resource() to simplify code
  2019-08-02 13:28 ` [PATCH -next 07/12] crypto: picoxcell " YueHaibing
@ 2019-08-03 14:13   ` Jamie Iles
  0 siblings, 0 replies; 18+ messages in thread
From: Jamie Iles @ 2019-08-03 14:13 UTC (permalink / raw)
  To: YueHaibing
  Cc: herbert, lars.persson, jesper.nilsson, davem, thomas.lendacky,
	gary.hook, krzk, kgene, antoine.tenart, matthias.bgg, jamie,
	agross, heiko, mcoquelin.stm32, alexandre.torgue,
	clabbe.montjoie, mripard, wens, linux-kernel, linux-crypto,
	linux-arm-kernel, linux-samsung-soc, linux-arm-kernel,
	linux-mediatek, linux-arm-msm, linux-rockchip, linux-stm32

On Fri, Aug 02, 2019 at 09:28:04PM +0800, YueHaibing wrote:
> Use devm_platform_ioremap_resource() to simplify the code a bit.
> This is detected by coccinelle.
> 
> Reported-by: Hulk Robot <hulkci@huawei.com>
> Signed-off-by: YueHaibing <yuehaibing@huawei.com>

Acked-by: Jamie Iles <jamie@jamieiles.com>

> ---
>  drivers/crypto/picoxcell_crypto.c | 5 ++---
>  1 file changed, 2 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/crypto/picoxcell_crypto.c b/drivers/crypto/picoxcell_crypto.c
> index b985cb85..9a939b4 100644
> --- a/drivers/crypto/picoxcell_crypto.c
> +++ b/drivers/crypto/picoxcell_crypto.c
> @@ -1624,7 +1624,7 @@ MODULE_DEVICE_TABLE(of, spacc_of_id_table);
>  static int spacc_probe(struct platform_device *pdev)
>  {
>  	int i, err, ret;
> -	struct resource *mem, *irq;
> +	struct resource *irq;
>  	struct device_node *np = pdev->dev.of_node;
>  	struct spacc_engine *engine = devm_kzalloc(&pdev->dev, sizeof(*engine),
>  						   GFP_KERNEL);
> @@ -1653,8 +1653,7 @@ static int spacc_probe(struct platform_device *pdev)
>  
>  	engine->name = dev_name(&pdev->dev);
>  
> -	mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> -	engine->regs = devm_ioremap_resource(&pdev->dev, mem);
> +	engine->regs = devm_platform_ioremap_resource(pdev, 0);
>  	if (IS_ERR(engine->regs))
>  		return PTR_ERR(engine->regs);
>  
> -- 
> 2.7.4
> 
> 

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [PATCH -next 03/12] crypto: exynos - use devm_platform_ioremap_resource() to simplify code
  2019-08-02 13:28 ` [PATCH -next 03/12] crypto: exynos " YueHaibing
@ 2019-08-05  9:18   ` Krzysztof Kozlowski
  0 siblings, 0 replies; 18+ messages in thread
From: Krzysztof Kozlowski @ 2019-08-05  9:18 UTC (permalink / raw)
  To: YueHaibing
  Cc: herbert, lars.persson, jesper.nilsson, davem, thomas.lendacky,
	gary.hook, kgene, antoine.tenart, matthias.bgg, jamie, agross,
	heiko, mcoquelin.stm32, alexandre.torgue, clabbe.montjoie,
	mripard, wens, linux-kernel, linux-crypto, linux-arm-kernel,
	linux-samsung-soc, linux-arm-kernel, linux-mediatek,
	linux-arm-msm, linux-rockchip, linux-stm32

On Fri, 2 Aug 2019 at 15:31, YueHaibing <yuehaibing@huawei.com> wrote:
>
> Use devm_platform_ioremap_resource() to simplify the code a bit.
> This is detected by coccinelle.
>
> Reported-by: Hulk Robot <hulkci@huawei.com>
> Signed-off-by: YueHaibing <yuehaibing@huawei.com>
> ---
>  drivers/crypto/exynos-rng.c | 4 +---
>  1 file changed, 1 insertion(+), 3 deletions(-)
>

Reviewed-by: Krzysztof Kozlowski <krzk@kernel.org>

Best regards,
Krzysztof

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [PATCH -next 00/12] crypto: use devm_platform_ioremap_resource() to simplify code
  2019-08-02 13:27 [PATCH -next 00/12] crypto: use devm_platform_ioremap_resource() to simplify code YueHaibing
                   ` (11 preceding siblings ...)
  2019-08-02 13:28 ` [PATCH -next 12/12] crypto: qcom-rng " YueHaibing
@ 2019-08-09  6:20 ` Herbert Xu
  12 siblings, 0 replies; 18+ messages in thread
From: Herbert Xu @ 2019-08-09  6:20 UTC (permalink / raw)
  To: YueHaibing
  Cc: lars.persson, jesper.nilsson, davem, thomas.lendacky, gary.hook,
	krzk, kgene, antoine.tenart, matthias.bgg, jamie, agross, heiko,
	mcoquelin.stm32, alexandre.torgue, clabbe.montjoie, mripard,
	wens, linux-kernel, linux-crypto, linux-arm-kernel,
	linux-samsung-soc, linux-arm-kernel, linux-mediatek,
	linux-arm-msm, linux-rockchip, linux-stm32

On Fri, Aug 02, 2019 at 09:27:57PM +0800, YueHaibing wrote:
> devm_platform_ioremap_resource() internally have platform_get_resource()
> and devm_ioremap_resource() in it. So instead of calling them separately
> use devm_platform_ioremap_resource() directly.
> 
> YueHaibing (12):
>   crypto: artpec6 - use devm_platform_ioremap_resource() to simplify
>     code
>   crypto: ccp - use devm_platform_ioremap_resource() to simplify code
>   crypto: exynos - use devm_platform_ioremap_resource() to simplify code
>   crypto: img-hash - use devm_platform_ioremap_resource() to simplify
>     code
>   crypto: inside-secure - use devm_platform_ioremap_resource() to
>     simplify code
>   crypto: mediatek - use devm_platform_ioremap_resource() to simplify
>     code
>   crypto: picoxcell - use devm_platform_ioremap_resource() to simplify
>     code
>   crypto: sunxi-ss - use devm_platform_ioremap_resource() to simplify
>     code
>   crypto: rockchip - use devm_platform_ioremap_resource() to simplify
>     code
>   crypto: stm32 - use devm_platform_ioremap_resource() to simplify code
>   crypto: qce - use devm_platform_ioremap_resource() to simplify code
>   crypto: qcom-rng - use devm_platform_ioremap_resource() to simplify
>     code
> 
>  drivers/crypto/axis/artpec6_crypto.c    | 4 +---
>  drivers/crypto/ccp/sp-platform.c        | 4 +---
>  drivers/crypto/exynos-rng.c             | 4 +---
>  drivers/crypto/img-hash.c               | 4 +---
>  drivers/crypto/inside-secure/safexcel.c | 4 +---
>  drivers/crypto/mediatek/mtk-platform.c  | 3 +--
>  drivers/crypto/picoxcell_crypto.c       | 5 ++---
>  drivers/crypto/qce/core.c               | 4 +---
>  drivers/crypto/qcom-rng.c               | 4 +---
>  drivers/crypto/rockchip/rk3288_crypto.c | 4 +---
>  drivers/crypto/stm32/stm32-crc32.c      | 4 +---
>  drivers/crypto/stm32/stm32-cryp.c       | 4 +---
>  drivers/crypto/sunxi-ss/sun4i-ss-core.c | 4 +---
>  13 files changed, 14 insertions(+), 38 deletions(-)

All 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] 18+ messages in thread

end of thread, other threads:[~2019-08-09  6:20 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-08-02 13:27 [PATCH -next 00/12] crypto: use devm_platform_ioremap_resource() to simplify code YueHaibing
2019-08-02 13:27 ` [PATCH -next 01/12] crypto: artpec6 - " YueHaibing
2019-08-02 13:27 ` [PATCH -next 02/12] crypto: ccp " YueHaibing
2019-08-02 13:28 ` [PATCH -next 03/12] crypto: exynos " YueHaibing
2019-08-05  9:18   ` Krzysztof Kozlowski
2019-08-02 13:28 ` [PATCH -next 04/12] crypto: img-hash " YueHaibing
2019-08-02 13:28 ` [PATCH -next 05/12] crypto: inside-secure " YueHaibing
2019-08-02 16:17   ` Antoine Tenart
2019-08-02 13:28 ` [PATCH -next 06/12] crypto: mediatek " YueHaibing
2019-08-02 13:28 ` [PATCH -next 07/12] crypto: picoxcell " YueHaibing
2019-08-03 14:13   ` Jamie Iles
2019-08-02 13:28 ` [PATCH -next 08/12] crypto: sunxi-ss " YueHaibing
2019-08-02 13:28 ` [PATCH -next 09/12] crypto: rockchip " YueHaibing
2019-08-02 16:09   ` Heiko Stuebner
2019-08-02 13:28 ` [PATCH -next 10/12] crypto: stm32 " YueHaibing
2019-08-02 13:28 ` [PATCH -next 11/12] crypto: qce " YueHaibing
2019-08-02 13:28 ` [PATCH -next 12/12] crypto: qcom-rng " YueHaibing
2019-08-09  6:20 ` [PATCH -next 00/12] crypto: " 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).