Skip to content

Commit

Permalink
crypto: stm32 - Rename module to use generic crypto
Browse files Browse the repository at this point in the history
The complete stm32 module is rename as crypto
in order to use generic naming

Signed-off-by: Lionel Debieve <lionel.debieve@st.com>
Reviewed-by: Fabien Dessenne <fabien.dessenne@st.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
  • Loading branch information
lionel.debieve@st.com authored and Herbert Xu committed Jul 28, 2017
1 parent 0373d08 commit c35af01
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion drivers/crypto/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ obj-$(CONFIG_CRYPTO_DEV_QCE) += qce/
obj-$(CONFIG_CRYPTO_DEV_ROCKCHIP) += rockchip/
obj-$(CONFIG_CRYPTO_DEV_S5P) += s5p-sss.o
obj-$(CONFIG_CRYPTO_DEV_SAHARA) += sahara.o
obj-$(CONFIG_CRYPTO_DEV_STM32) += stm32/
obj-$(CONFIG_ARCH_STM32) += stm32/
obj-$(CONFIG_CRYPTO_DEV_SUN4I_SS) += sunxi-ss/
obj-$(CONFIG_CRYPTO_DEV_TALITOS) += talitos.o
obj-$(CONFIG_CRYPTO_DEV_UX500) += ux500/
Expand Down
6 changes: 3 additions & 3 deletions drivers/crypto/stm32/Kconfig
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
config CRYPTO_DEV_STM32
tristate "Support for STM32 crypto accelerators"
config CRC_DEV_STM32
tristate "Support for STM32 crc accelerators"
depends on ARCH_STM32
select CRYPTO_HASH
help
This enables support for the CRC32 hw accelerator which can be found
on STMicroelectronis STM32 SOC.
on STMicroelectronics STM32 SOC.
3 changes: 1 addition & 2 deletions drivers/crypto/stm32/Makefile
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
obj-$(CONFIG_CRYPTO_DEV_STM32) += stm32_cryp.o
stm32_cryp-objs := stm32_crc32.o
obj-$(CONFIG_CRC_DEV_STM32) += stm32_crc32.o

0 comments on commit c35af01

Please sign in to comment.