Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1171754 > unrolled thread
| Started by | Paul Gortmaker <paul.gortmaker@windriver.com> |
|---|---|
| First post | 2015-06-25 02:10 +0200 |
| Last post | 2015-06-25 10:50 +0200 |
| Articles | 3 — 3 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
Re: [PATCH v7 00/14] crypto: add a new driver for Marvell's CESA Paul Gortmaker <paul.gortmaker@windriver.com> - 2015-06-25 02:10 +0200
Re: [PATCH v7 00/14] crypto: add a new driver for Marvell's CESA Javier Martinez Canillas <javier@dowhile0.org> - 2015-06-25 02:40 +0200
[PATCH] crypto: mv_cesa - fix up for of_get_named_gen_pool() rename Simon Guinot <simon.guinot@sequanux.org> - 2015-06-25 10:50 +0200
| From | Paul Gortmaker <paul.gortmaker@windriver.com> |
|---|---|
| Date | 2015-06-25 02:10 +0200 |
| Subject | Re: [PATCH v7 00/14] crypto: add a new driver for Marvell's CESA |
| Message-ID | <pF2TU-d1-15@gated-at.bofh.it> |
[Re: [PATCH v7 00/14] crypto: add a new driver for Marvell's CESA] On 22/06/2015 (Mon 15:59) Herbert Xu wrote: > On Mon, Jun 22, 2015 at 09:23:36AM +0200, Boris Brezillon wrote: > > Hi Herbert, > > > > On Sun, 21 Jun 2015 16:27:17 +0800 > > Herbert Xu <herbert@gondor.apana.org.au> wrote: > > > > > On Sun, Jun 21, 2015 at 10:24:18AM +0200, Boris Brezillon wrote: > > > > > > > > Indeed. Here is a patch fixing that. > > > > > > I think you should just kill COMPILE_TEST instead of adding ARM. > > > > The following patch is killing the COMPILE_TEST dependency. > > Patch applied. Just a heads up, this driver is still killing a couple of linux-next builds today and for the past few days. drivers/crypto/mv_cesa.c:1037:2: error: implicit declaration of function 'of_get_named_gen_pool' [-Werror=implicit-function-declaration] http://kisskb.ellerman.id.au/kisskb/buildresult/12448851/ http://kisskb.ellerman.id.au/kisskb/buildresult/12448776/ Missing dependency on CONFIG_OF_<blah> presumably. Paul. -- > -- > 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 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [next] | [standalone]
| From | Javier Martinez Canillas <javier@dowhile0.org> |
|---|---|
| Date | 2015-06-25 02:40 +0200 |
| Message-ID | <pF3mV-KX-7@gated-at.bofh.it> |
| In reply to | #1171754 |
Hello Paul, On Thu, Jun 25, 2015 at 2:00 AM, Paul Gortmaker <paul.gortmaker@windriver.com> wrote: > [Re: [PATCH v7 00/14] crypto: add a new driver for Marvell's CESA] On 22/06/2015 (Mon 15:59) Herbert Xu wrote: > >> On Mon, Jun 22, 2015 at 09:23:36AM +0200, Boris Brezillon wrote: >> > Hi Herbert, >> > >> > On Sun, 21 Jun 2015 16:27:17 +0800 >> > Herbert Xu <herbert@gondor.apana.org.au> wrote: >> > >> > > On Sun, Jun 21, 2015 at 10:24:18AM +0200, Boris Brezillon wrote: >> > > > >> > > > Indeed. Here is a patch fixing that. >> > > >> > > I think you should just kill COMPILE_TEST instead of adding ARM. >> > >> > The following patch is killing the COMPILE_TEST dependency. >> >> Patch applied. > > Just a heads up, this driver is still killing a couple of linux-next > builds today and for the past few days. > > drivers/crypto/mv_cesa.c:1037:2: error: implicit declaration of function > 'of_get_named_gen_pool' [-Werror=implicit-function-declaration] > > http://kisskb.ellerman.id.au/kisskb/buildresult/12448851/ > http://kisskb.ellerman.id.au/kisskb/buildresult/12448776/ > > Missing dependency on CONFIG_OF_<blah> presumably. > I haven't looked at the series but <linux/genalloc.h> has a stub of_get_named_gen_pool() function if CONFIG_OF is not enabled [0]. So it seems that the problem is rather that the header is not being included in some file. > Paul. > -- > Best regards, Javier [0]: http://lxr.free-electrons.com/source/include/linux/genalloc.h#L131 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Simon Guinot <simon.guinot@sequanux.org> |
|---|---|
| Date | 2015-06-25 10:50 +0200 |
| Subject | [PATCH] crypto: mv_cesa - fix up for of_get_named_gen_pool() rename |
| Message-ID | <pFb18-3Dh-13@gated-at.bofh.it> |
| In reply to | #1171774 |
This patch fixes the following build error:
drivers/crypto/mv_cesa.c: In function 'mv_cesa_get_sram':
drivers/crypto/mv_cesa.c:1037: error: implicit declaration of function 'of_get_named_gen_pool'
drivers/crypto/mv_cesa.c:1038: warning: assignment makes pointer from integer without a cast
scripts/Makefile.build:258: recipe for target 'drivers/crypto/mv_cesa.o' failed
Signed-off-by: Simon Guinot <simon.guinot@sequanux.org>
---
drivers/crypto/mv_cesa.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/crypto/mv_cesa.c b/drivers/crypto/mv_cesa.c
index 5bcd575fa96f..e6b658faef63 100644
--- a/drivers/crypto/mv_cesa.c
+++ b/drivers/crypto/mv_cesa.c
@@ -1034,8 +1034,8 @@ static int mv_cesa_get_sram(struct platform_device *pdev,
&sram_size);
cp->sram_size = sram_size;
- cp->sram_pool = of_get_named_gen_pool(pdev->dev.of_node,
- "marvell,crypto-srams", 0);
+ cp->sram_pool = of_gen_pool_get(pdev->dev.of_node,
+ "marvell,crypto-srams", 0);
if (cp->sram_pool) {
cp->sram = gen_pool_dma_alloc(cp->sram_pool, sram_size,
&cp->sram_dma);
--
2.1.4
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web