Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1356888 > unrolled thread
| Started by | Krzysztof Kozlowski <k.kozlowski@samsung.com> |
|---|---|
| First post | 2016-03-14 05:30 +0100 |
| Last post | 2016-03-14 23:40 +0100 |
| Articles | 2 — 2 participants |
Back to article view | Back to linux.kernel
[PATCH] crypto: s5p-sss - Enable COMPILE_TEST Krzysztof Kozlowski <k.kozlowski@samsung.com> - 2016-03-14 05:30 +0100
Re: [PATCH] crypto: s5p-sss - Enable COMPILE_TEST Vladimir Zapolskiy <vz@mleia.com> - 2016-03-14 23:40 +0100
| From | Krzysztof Kozlowski <k.kozlowski@samsung.com> |
|---|---|
| Date | 2016-03-14 05:30 +0100 |
| Subject | [PATCH] crypto: s5p-sss - Enable COMPILE_TEST |
| Message-ID | <rcsiK-7as-9@gated-at.bofh.it> |
Get some build coverage of S5P/Exynos AES H/W acceleration driver. Driver uses DMA and devm_ioremap_resource() so add DMA and IOMEM dependencies for the compile testing. Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com> --- Compile-tested on x86, x86_64, ppc64, arm, arm64 and mips. --- drivers/crypto/Kconfig | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/crypto/Kconfig b/drivers/crypto/Kconfig index 477fffdb4f49..7a51ac0ac290 100644 --- a/drivers/crypto/Kconfig +++ b/drivers/crypto/Kconfig @@ -342,7 +342,8 @@ config CRYPTO_DEV_SAHARA config CRYPTO_DEV_S5P tristate "Support for Samsung S5PV210/Exynos crypto accelerator" - depends on ARCH_S5PV210 || ARCH_EXYNOS + depends on ARCH_S5PV210 || ARCH_EXYNOS || COMPILE_TEST + depends on HAS_IOMEM && HAS_DMA select CRYPTO_AES select CRYPTO_BLKCIPHER help -- 2.5.0
[toc] | [next] | [standalone]
| From | Vladimir Zapolskiy <vz@mleia.com> |
|---|---|
| Date | 2016-03-14 23:40 +0100 |
| Message-ID | <rcJjA-1AB-3@gated-at.bofh.it> |
| In reply to | #1356888 |
On 14.03.2016 06:20, Krzysztof Kozlowski wrote: > Get some build coverage of S5P/Exynos AES H/W acceleration driver. > Driver uses DMA and devm_ioremap_resource() so add DMA and IOMEM > dependencies for the compile testing. > > Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com> > > --- > > Compile-tested on x86, x86_64, ppc64, arm, arm64 and mips. > --- > drivers/crypto/Kconfig | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/drivers/crypto/Kconfig b/drivers/crypto/Kconfig > index 477fffdb4f49..7a51ac0ac290 100644 > --- a/drivers/crypto/Kconfig > +++ b/drivers/crypto/Kconfig > @@ -342,7 +342,8 @@ config CRYPTO_DEV_SAHARA > > config CRYPTO_DEV_S5P > tristate "Support for Samsung S5PV210/Exynos crypto accelerator" > - depends on ARCH_S5PV210 || ARCH_EXYNOS > + depends on ARCH_S5PV210 || ARCH_EXYNOS || COMPILE_TEST > + depends on HAS_IOMEM && HAS_DMA > select CRYPTO_AES > select CRYPTO_BLKCIPHER > help > Acked-by: Vladimir Zapolskiy <vz@mleia.com> -- With best wishes, Vladimir
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web