Re: [PATCH v2 2/6] crypto: engine - Permit to enqueue all async requests

2018-02-14 Thread Fabien DESSENNE
lt;clabbe.montj...@gmail.com> > Tested-by: Fabien Dessenne <fabien.desse...@st.com> Tested-by: Fabien Dessenne <fabien.desse...@st.com> > --- > crypto/crypto_engine.c | 301 > ++-- > include/crypto/engine.h | 68 ++

[PATCH 0/2] crypto: stm32/cryp - add AEAD cipher algorithms

2018-02-07 Thread Fabien Dessenne
This patchset depends on "crypto: engine - Permit to enqueue all async requests" proposed by Corentin Labbe [https://lkml.org/lkml/2018/1/26/608]. stm32-cryp uses this updated crpyto engine to handle AEAD cipher algortihms. Fabien Dessenne (2): crypto: stm32/cryp - add aes gcm / c

[PATCH 1/2] crypto: stm32/cryp - add aes gcm / ccm support

2018-02-07 Thread Fabien Dessenne
Add AEAD cipher algorithms for aes gcm and ccm. Signed-off-by: Fabien Dessenne <fabien.desse...@st.com> --- drivers/crypto/stm32/stm32-cryp.c | 931 -- 1 file changed, 902 insertions(+), 29 deletions(-) diff --git a/drivers/crypto/stm32/stm32-cry

[PATCH 2/2] crypto: stm32/cryp - add stm32mp1 support

2018-02-07 Thread Fabien Dessenne
stm32mp1 differs from stm32f7 in the way it handles byte ordering and padding for aes gcm & ccm algo. Signed-off-by: Fabien Dessenne <fabien.desse...@st.com> --- drivers/crypto/stm32/stm32-cryp.c | 6 ++ 1 file changed, 6 insertions(+) diff --git a/drivers/crypto/stm32/stm32

Re: [PATCH -next] crypto: stm32 - remove redundant dev_err call in stm32_cryp_probe()

2018-01-17 Thread Fabien DESSENNE
Hi, Thank you for the patch. On 17/01/18 12:40, Wei Yongjun wrote: > There is a error message within devm_ioremap_resource > already, so remove the dev_err call to avoid redundant > error message. > > Signed-off-by: Wei Yongjun <weiyongj...@huawei.com> Reviewe

Re: [PATCH 6/6] crypto: stm32-cryp: convert to the new crypto engine API

2018-01-10 Thread Fabien DESSENNE
(Adding my tested by) On 10/01/18 15:25, Fabien DESSENNE wrote: > > On 03/01/18 21:11, Corentin Labbe wrote: >> This patch convert the stm32-cryp driver to the new crypto engine API. >> Signed-off-by: Corentin Labbe <clabbe.montj...@gmail.com> Tested-by: Fabien Dessenne

Re: [PATCH 2/6] crypto: engine - Permit to enqueue all async requests

2018-01-10 Thread Fabien DESSENNE
(adding my tested by) On 10/01/18 15:19, Fabien DESSENNE wrote: > On 03/01/18 21:11, Corentin Labbe wrote: >> The crypto engine could actually only enqueue hash and ablkcipher request. >> This patch permit it to enqueue any type of crypto_async_request. >> >> Si

Re: [PATCH 5/6] crypto: stm32-hash: convert to the new crypto engine API

2018-01-10 Thread Fabien DESSENNE
(adding my tested my) On 10/01/18 15:24, Fabien DESSENNE wrote: > > On 03/01/18 21:11, Corentin Labbe wrote: >> This patch convert the stm32-hash driver to the new crypto engine API. >> >> Signed-off-by: Corentin Labbe <clabbe.montj...@gmail.com> Tested-by:

Re: [PATCH 6/6] crypto: stm32-cryp: convert to the new crypto engine API

2018-01-10 Thread Fabien DESSENNE
On 03/01/18 21:11, Corentin Labbe wrote: > This patch convert the stm32-cryp driver to the new crypto engine API. > Signed-off-by: Corentin Labbe > --- > drivers/crypto/stm32/stm32-cryp.c | 21 - > 1 file changed, 16 insertions(+), 5

Re: [PATCH 5/6] crypto: stm32-hash: convert to the new crypto engine API

2018-01-10 Thread Fabien DESSENNE
On 03/01/18 21:11, Corentin Labbe wrote: > This patch convert the stm32-hash driver to the new crypto engine API. > > Signed-off-by: Corentin Labbe > --- > drivers/crypto/stm32/stm32-hash.c | 18 +- > 1 file changed, 13 insertions(+), 5 deletions(-)

Re: [PATCH 2/6] crypto: engine - Permit to enqueue all async requests

2018-01-10 Thread Fabien DESSENNE
On 03/01/18 21:11, Corentin Labbe wrote: > The crypto engine could actually only enqueue hash and ablkcipher request. > This patch permit it to enqueue any type of crypto_async_request. > > Signed-off-by: Corentin Labbe > --- > crypto/crypto_engine.c | 230 >

Re: [PATCH 1/6] Documentation: crypto: document crypto engine API

2018-01-10 Thread Fabien DESSENNE
Hi Corentin, Thank you for this new version which I have testes successfully with the stm32 hash & cryp drivers. As a general comment on this patchset, I would say that it does not cover all async requests: typically I need (for the pending stm32 cryp driver uprade) to use CryptoEngine to

Re: [PATCH] crypto: stm32 - Use standard CONFIG name

2017-12-22 Thread Fabien DESSENNE
: Corentin Labbe <cla...@baylibre.com> Reviewed-by: Fabien Dessenne <fabien.desse...@st.com> > --- > drivers/crypto/stm32/Kconfig | 6 +++--- > drivers/crypto/stm32/Makefile | 6 +++--- > 2 files changed, 6 insertions(+), 6 deletions(-) > > diff --git a/drivers/crypto/s

Re: [PATCH] crypto: stm32: fix modular build

2017-12-11 Thread Fabien DESSENNE
Hi Arnd, This issue was reported a few days ago, and Herbert applied the patch 2 minutes before you send the mail (see [https://www.mail-archive.com/linux-crypto@vger.kernel.org/msg29762.html]). Anyway, thank you for reporting this. Fabien On 11/12/17 12:47, Arnd Bergmann wrote: > Building

Re: [PATCH RFC 4/4] crypto: stm32: convert to the new crypto engine API

2017-12-06 Thread Fabien DESSENNE
Hi, On 29/11/17 09:41, Corentin Labbe wrote: > This patch convert the driver to the new crypto engine API. > > Signed-off-by: Corentin Labbe <clabbe.montj...@gmail.com> Tested-by: Fabien Dessenne <fabien.desse...@st.com> > --- > drivers/cry

Re: [PATCH RFC 1/4] crypto: engine - Permit to enqueue all async requests

2017-12-06 Thread Fabien DESSENNE
On 29/11/17 09:41, Corentin Labbe wrote: > The crypto engine could actually only enqueue hash and ablkcipher request. > This patch permit it to enqueue any type of crypto_async_request. > > Signed-off-by: Corentin Labbe > --- > crypto/crypto_engine.c | 188 >

Re: [PATCH RFC 0/4] crypto: engine - Permit to enqueue all async requests

2017-12-06 Thread Fabien DESSENNE
Hi Corentin, I am fine with this proposal: it is generic enough and I have been able to test and run the crypto engine with aead_request without changing any single line of code. This is what I need to be able to send the AEAD extension of the stm32-cryp driver (successfully tested with your

Re: [PATCH] crypto: stm32: fix module device table name

2017-11-30 Thread Fabien DESSENNE
49:25: error: 'sti_dt_ids' undeclared > here (not in a function) > MODULE_DEVICE_TABLE(of, sti_dt_ids); > > Let's replace sti_dt_ids with stm32_dt_ids which is just declared > before. > > Signed-off-by: Corentin Labbe <clabbe.montj...@gmail.com> Reviewed-by:

Re: [PATCH v5 2/2] crypto: stm32 - Support for STM32 CRYP crypto module

2017-11-28 Thread Fabien DESSENNE
Just a gentle ping ... or have I missed out on a reply? On 13/11/17 11:30, Fabien DESSENNE wrote: > Hi Herbert, > > Can you check if this patchset (removed the AEAD part as you suggested + > libkcapi test OK as suggested by Corentin) can be applied now? > > BR > > Fabien

Re: [PATCH v5 2/2] crypto: stm32 - Support for STM32 CRYP crypto module

2017-11-13 Thread Fabien DESSENNE
Hi Herbert, Can you check if this patchset (removed the AEAD part as you suggested + libkcapi test OK as suggested by Corentin) can be applied now? BR Fabien On 07/11/17 15:40, Fabien DESSENNE wrote: > > On 22/10/17 09:26, Corentin Labbe wrote: >> On Thu, Oct 19, 2017 at 05:1

Re: [PATCH v5 2/2] crypto: stm32 - Support for STM32 CRYP crypto module

2017-11-07 Thread Fabien DESSENNE
On 22/10/17 09:26, Corentin Labbe wrote: > On Thu, Oct 19, 2017 at 05:10:30PM +0200, Fabien Dessenne wrote: >> This module registers block cipher algorithms that make use of the >> STMicroelectronics STM32 crypto "CRYP1" hardware. >> The following algorithms ar

[PATCH v5 2/2] crypto: stm32 - Support for STM32 CRYP crypto module

2017-10-19 Thread Fabien Dessenne
This module registers block cipher algorithms that make use of the STMicroelectronics STM32 crypto "CRYP1" hardware. The following algorithms are supported: - aes: ecb, cbc, ctr - des: ecb, cbc - tdes: ecb, cbc Signed-off-by: Fabien Dessenne <fabien.desse...@st.com> --- driv

[PATCH v5 1/2] dt-bindings: Document STM32 CRYP bindings

2017-10-19 Thread Fabien Dessenne
Document device tree bindings for the STM32 CRYP. Signed-off-by: Fabien Dessenne <fabien.desse...@st.com> Acked-by: Rob Herring <r...@kernel.org> --- .../devicetree/bindings/crypto/st,stm32-cryp.txt | 19 +++ 1 file changed, 19 insertions(+) create mode 100644 D

[PATCH v5 0/2] STM32 CRYP crypto driver

2017-10-19 Thread Fabien Dessenne
CCM algorithms Changes since v3: - update dt-bindings with Rob Herring remarks Changes since v2: - update dt-bindings (interrupts description) - rebase on STM32 crypto patches (L. Debieve : update CRC32 + add HASH) Fabien Dessenne (2): dt-bindings: Document STM32 CRYP bindings crypto: s

Re: [PATCH v4 2/2] crypto: stm32 - Support for STM32 CRYP crypto module

2017-10-19 Thread Fabien DESSENNE
Fabien On 19/10/17 12:34, Corentin Labbe wrote: > Hello > > I have some minor comment below > > On Thu, Oct 19, 2017 at 11:03:59AM +0200, Fabien Dessenne wrote: >> This module registers block cipher algorithms that make use of the >> STMicroelectronics STM32 crypto "C

[PATCH v4 1/2] dt-bindings: Document STM32 CRYP bindings

2017-10-19 Thread Fabien Dessenne
Document device tree bindings for the STM32 CRYP. Signed-off-by: Fabien Dessenne <fabien.desse...@st.com> Acked-by: Rob Herring <r...@kernel.org> --- .../devicetree/bindings/crypto/st,stm32-cryp.txt | 19 +++ 1 file changed, 19 insertions(+) create mode 100644 D

[PATCH v4 2/2] crypto: stm32 - Support for STM32 CRYP crypto module

2017-10-19 Thread Fabien Dessenne
This module registers block cipher algorithms that make use of the STMicroelectronics STM32 crypto "CRYP1" hardware. The following algorithms are supported: - aes: ecb, cbc, ctr - des: ecb, cbc - tdes: ecb, cbc Signed-off-by: Fabien Dessenne <fabien.desse...@st.com> --- driv

[PATCH v4 0/2] STM32 CRYP crypto driver

2017-10-19 Thread Fabien Dessenne
upts description) - rebase on STM32 crypto patches (L. Debieve : update CRC32 + add HASH) Fabien Dessenne (3): crypto: engine - permit to enqueue aead_request dt-bindings: Document STM32 CRYP bindings crypto: stm32 - Support for STM32 CRYP crypto module Fabien Dessenne (2): dt-bindings: Docu

Re: [PATCH v3 1/3] crypto: engine - permit to enqueue aead_request

2017-10-03 Thread Fabien DESSENNE
On 22/09/17 11:09, Herbert Xu wrote: > On Fri, Aug 18, 2017 at 11:19:04AM +0200, Fabien Dessenne wrote: >> The current crypto engine allows ablkcipher_request and ahash_request to >> be enqueued. Extend this to aead_request. >> >> Signed-off-by: Fabien Dessenne <fabi

Re: [PATCH v3 0/3] STM32 CRYP crypto driver

2017-09-18 Thread Fabien DESSENNE
Just a gentle ping ... or have I missed out on a reply? On 18/08/17 11:19, Fabien Dessenne wrote: > This set of patches adds a new crypto driver for STMicroelectronics stm32 HW. > This drivers uses the crypto API and provides with HW-enabled AEAD and block > cipher algorithms. >

[PATCH v3 3/3] crypto: stm32 - Support for STM32 CRYP crypto module

2017-08-18 Thread Fabien Dessenne
This module registers block and AEAD cipher algorithms that make use of the STMicroelectronics STM32 crypto "CRYP1" hardware. The following algorithms are supported: - aes: ecb, cbc, ctr, gcm, ccm - des: ecb, cbc - tdes: ecb, cbc Signed-off-by: Fabien Dessenne <fabien.de

[PATCH v3 2/3] dt-bindings: Document STM32 CRYP bindings

2017-08-18 Thread Fabien Dessenne
Document device tree bindings for the STM32 CRYP. Signed-off-by: Fabien Dessenne <fabien.desse...@st.com> Acked-by: Rob Herring <r...@kernel.org> --- .../devicetree/bindings/crypto/st,stm32-cryp.txt | 19 +++ 1 file changed, 19 insertions(+) create mode 100644 D

[PATCH v3 1/3] crypto: engine - permit to enqueue aead_request

2017-08-18 Thread Fabien Dessenne
The current crypto engine allows ablkcipher_request and ahash_request to be enqueued. Extend this to aead_request. Signed-off-by: Fabien Dessenne <fabien.desse...@st.com> --- crypto/crypto_engine.c | 101 include/crypto/engine.h | 16 +

[PATCH v3 0/3] STM32 CRYP crypto driver

2017-08-18 Thread Fabien Dessenne
with tcrypt / testmgr. Changes since v3: - update dt-bindings with Rob Herring remarks Changes since v2: - update dt-bindings (interrupts description) - rebase on STM32 crypto patches (L. Debieve : update CRC32 + add HASH) Fabien Dessenne (3): crypto: engine - permit to enqueue aead_request

RE: [PATCH 2/3] crypto: engine - find request type with cra_type

2017-08-15 Thread Fabien DESSENNE
Hi Corentin, Since I have just sent a patch to add the support of "aead_request" to crypto engine, I am wondering if your proposed change (checking cra_type instead of crypto_tfm_alg_type) and mine are compatible. It looks like they are (assuming we export crypto_aead_type): can you confirm? BR

[PATCH v2 1/3] crypto: engine - permit to enqueue aead_request

2017-08-15 Thread Fabien Dessenne
The current crypto engine allows ablkcipher_request and ahash_request to be enqueued. Extend this to aead_request. Signed-off-by: Fabien Dessenne <fabien.desse...@st.com> --- crypto/crypto_engine.c | 101 include/crypto/engine.h | 16 +

[PATCH v2 3/3] crypto: stm32 - Support for STM32 CRYP crypto module

2017-08-15 Thread Fabien Dessenne
This module registers block and AEAD cipher algorithms that make use of the STMicroelectronics STM32 crypto "CRYP1" hardware. The following algorithms are supported: - aes: ecb, cbc, ctr, gcm, ccm - des: ecb, cbc - tdes: ecb, cbc Signed-off-by: Fabien Dessenne <fabien.de

[PATCH v2 2/3] dt-bindings: Document STM32 CRYP bindings

2017-08-15 Thread Fabien Dessenne
Document device tree bindings for the STM32 CRYP. Signed-off-by: Fabien Dessenne <fabien.desse...@st.com> --- .../devicetree/bindings/crypto/st,stm32-cryp.txt | 20 1 file changed, 20 insertions(+) create mode 100644 Documentation/devicetree/bindings/crypto/st

[PATCH v2 0/3] STM32 CRYP crypto driver

2017-08-15 Thread Fabien Dessenne
with tcrypt / testmgr. Changes since v2: - update dt-bindings (interrupts description) - rebase on STM32 crypto patches (L. Debieve : update CRC32 + add HASH) Fabien Dessenne (3): crypto: engine - permit to enqueue aead_request dt-bindings: Document STM32 CRYP bindings crypto: stm32

[PATCH 3/3] crypto: stm32 - Support for STM32 CRYP crypto module

2017-07-13 Thread Fabien Dessenne
This module registers block and AEAD cipher algorithms that make use of the STMicroelectronics STM32 crypto "CRYP1" hardware. The following algorithms are supported: - aes: ecb, cbc, ctr, gcm, ccm - des: ecb, cbc - tdes: ecb, cbc Signed-off-by: Fabien Dessenne <fabien.de

[PATCH 2/3] dt-bindings: Document STM32 CRYP bindings

2017-07-13 Thread Fabien Dessenne
Document device tree bindings for the STM32 CRYP. Signed-off-by: Fabien Dessenne <fabien.desse...@st.com> --- .../devicetree/bindings/crypto/st,stm32-cryp.txt | 20 1 file changed, 20 insertions(+) create mode 100644 Documentation/devicetree/bindings/crypto/st

[PATCH 1/3] crypto: engine - permit to enqueue aead_request

2017-07-13 Thread Fabien Dessenne
The current crypto engine allows ablkcipher_request and ahash_request to be enqueued. Extend this to aead_request. Signed-off-by: Fabien Dessenne <fabien.desse...@st.com> --- crypto/crypto_engine.c | 101 include/crypto/engine.h | 16 +

[PATCH 0/3] STM32 CRYP crypto driver

2017-07-13 Thread Fabien Dessenne
with tcrypt / testmgr. Note: Since two other set of patches (update of STM32 CRC32 and addition of STM32 HASH) are being proposed, it may happen that there are some minor conflicts in 'Kconfig' and 'Makefile'. In that case, I will fix the issue in due course. Fabien Dessenne (3): crypto: engine

Re: [PATCH v3 2/5] crypto : stm32 - Add STM32F4 CRC32 support

2017-05-29 Thread Fabien DESSENNE
t; > - ret = crypto_register_shashes(algs, ARRAY_SIZE(algs)); > + /* For F4 series only CRC32 algorithm will be used */ > + if (of_device_is_compatible(crc->dev->of_node, "st,stm32f4-crc")) > + algs_size = 1; > + else > + algs_size = ARRAY_SIZE(algs); > + > + ret = crypto_register_shashes(algs, algs_size); > if (ret) { > dev_err(dev, "Failed to register\n"); > clk_disable_unprepare(crc->clk); > @@ -304,6 +351,7 @@ static int stm32_crc_remove(struct platform_device *pdev) > > static const struct of_device_id stm32_dt_ids[] = { > { .compatible = "st,stm32f7-crc", }, > + { .compatible = "st,stm32f4-crc", }, > {}, > }; > MODULE_DEVICE_TABLE(of, stm32_dt_ids); Reviewed-by: Fabien Dessenne <fabien.desse...@st.com>

Re: [PATCH v2 2/5] crypto: stm32 - Support for STM32 CRC32 crypto module

2017-03-24 Thread Fabien DESSENNE
On 24/03/17 05:28, PrasannaKumar Muralidharan wrote: > On 21 March 2017 at 20:43, Fabien Dessenne <fabien.desse...@st.com> wrote: >> This module registers a CRC32 ("Ethernet") and a CRC32C (Castagnoli) >> algorithm that make use of the STMicroelectronics STM3

[PATCH v2 5/5] ARM: configs: stm32: Add crypto support

2017-03-21 Thread Fabien Dessenne
Add STM32 crypto support in stm32_defconfig file. Signed-off-by: Fabien Dessenne <fabien.desse...@st.com> --- arch/arm/configs/stm32_defconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/arm/configs/stm32_defconfig b/arch/arm/configs/stm32_defconfig index a9d8e3c..03437f8

[PATCH v2 3/5] ARM: dts: stm32: Add CRC support to stm32f746

2017-03-21 Thread Fabien Dessenne
Add CRC (CRC32 crypto) support to stm32f746. Signed-off-by: Fabien Dessenne <fabien.desse...@st.com> --- arch/arm/boot/dts/stm32f746.dtsi | 7 +++ 1 file changed, 7 insertions(+) diff --git a/arch/arm/boot/dts/stm32f746.dtsi b/arch/arm/boot/dts/stm32f746.dtsi index f321ffe..755fb92

[PATCH v2 4/5] ARM: dts: stm32: enable CRC on stm32746g-eval board

2017-03-21 Thread Fabien Dessenne
Enable the CRC (CRC32 crypto) on stm32746g-eval board Signed-off-by: Fabien Dessenne <fabien.desse...@st.com> --- arch/arm/boot/dts/stm32746g-eval.dts | 4 1 file changed, 4 insertions(+) diff --git a/arch/arm/boot/dts/stm32746g-eval.dts b/arch/arm/boot/dts/stm32746g-eval.dts

[PATCH v2 2/5] crypto: stm32 - Support for STM32 CRC32 crypto module

2017-03-21 Thread Fabien Dessenne
ed with ~0. Using TCRYPT CRC32C speed test, this shows up to 900% speedup compared to the crc32c-generic algorithm. Signed-off-by: Fabien Dessenne <fabien.desse...@st.com> --- drivers/crypto/Kconfig | 2 + drivers/crypto/Makefile| 1 + drivers/crypto/stm32/Kco

[PATCH v2 1/5] dt-bindings: Document STM32 CRC bindings

2017-03-21 Thread Fabien Dessenne
Document device tree bindings for the STM32 CRC (crypto CRC32) Signed-off-by: Fabien Dessenne <fabien.desse...@st.com> --- .../devicetree/bindings/crypto/st,stm32-crc.txt | 16 1 file changed, 16 insertions(+) create mode 100644 Documentation/devicetree/bindings/

[PATCH v2 0/5] STM32 CRC crypto driver

2017-03-21 Thread Fabien Dessenne
clk - enable crypto in stm32 defconfig - typo fix in dt-bindings Fabien Dessenne (5): dt-bindings: Document STM32 CRC bindings crypto: stm32 - Support for STM32 CRC32 crypto module ARM: dts: stm32: Add CRC support to stm32f746 ARM: dts: stm32: enable CRC on stm32746g-eval board ARM: configs: st

[PATCH 4/4] ARM: dts: stm32: enable CRC on stm32746g-eval board

2017-03-14 Thread Fabien Dessenne
Enable the CRC (CRC32 crypto) on stm32746g-eval board Signed-off-by: Fabien Dessenne <fabien.desse...@st.com> --- arch/arm/boot/dts/stm32746g-eval.dts | 4 1 file changed, 4 insertions(+) diff --git a/arch/arm/boot/dts/stm32746g-eval.dts b/arch/arm/boot/dts/stm32746g-eval.dts

[PATCH 1/4] dt-bindings: Document STM32 CRC bindings

2017-03-14 Thread Fabien Dessenne
Document device tree bindings for the STM32 CRC (crypto CRC32) Signed-off-by: Fabien Dessenne <fabien.desse...@st.com> --- .../devicetree/bindings/crypto/st,stm32-crc.txt | 16 1 file changed, 16 insertions(+) create mode 100644 Documentation/devicetree/bindings/

[PATCH 2/4] crypto: stm32 - Support for STM32 CRC32 crypto module

2017-03-14 Thread Fabien Dessenne
ed with ~0. Using TCRYPT CRC32C speed test, this shows up to 900% speedup compared to the crc32c-generic algorithm. Signed-off-by: Fabien Dessenne <fabien.desse...@st.com> --- drivers/crypto/Kconfig | 2 + drivers/crypto/Makefile| 1 + drivers/crypto/stm32/Kco

[PATCH 0/4] STM32 CRC crypto driver

2017-03-14 Thread Fabien Dessenne
This set of patches adds a new crypto driver for STMicroelectronics stm32f746. The drivers uses the crypto API and provides with an HW-enabled CRC32 algorithm. It was developed and tested (tcrypt / testmgr) on evaluation board stm32746g. Fabien Dessenne (4): dt-bindings: Document STM32 CRC

[PATCH 3/4] ARM: dts: stm32: Add CRC support to stm32f746

2017-03-14 Thread Fabien Dessenne
Add CRC (CRC32 crypto) support to stm32f746. Signed-off-by: Fabien Dessenne <fabien.desse...@st.com> --- arch/arm/boot/dts/stm32f746.dtsi | 7 +++ 1 file changed, 7 insertions(+) diff --git a/arch/arm/boot/dts/stm32f746.dtsi b/arch/arm/boot/dts/stm32f746.dtsi index f321ffe..755fb92

[PATCH] crypto: doc - fix typo (struct sdesc)

2017-03-09 Thread Fabien Dessenne
Add missing " " in api-samples.rst Signed-off-by: Fabien Dessenne <fabien.desse...@st.com> --- Documentation/crypto/api-samples.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Documentation/crypto/api-samples.rst b/Documentation/crypto/api-samples.r