diff options
author | lionel.debieve@st.com <lionel.debieve@st.com> | 2017-07-13 09:06:33 -0400 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2017-07-28 05:55:54 -0400 |
commit | c35af01d939a865b666591ddc653d082258a1135 (patch) | |
tree | f0456fc5edeaf8da8068f9894f85d5b6c6086182 | |
parent | 0373d085870ab036146002d1ba3128855e26c953 (diff) |
crypto: stm32 - Rename module to use generic crypto
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>
-rw-r--r-- | drivers/crypto/Makefile | 2 | ||||
-rw-r--r-- | drivers/crypto/stm32/Kconfig | 6 | ||||
-rw-r--r-- | drivers/crypto/stm32/Makefile | 3 |
3 files changed, 5 insertions, 6 deletions
diff --git a/drivers/crypto/Makefile b/drivers/crypto/Makefile index de629165fde7..b12eb3c99430 100644 --- a/drivers/crypto/Makefile +++ b/drivers/crypto/Makefile | |||
@@ -36,7 +36,7 @@ obj-$(CONFIG_CRYPTO_DEV_QCE) += qce/ | |||
36 | obj-$(CONFIG_CRYPTO_DEV_ROCKCHIP) += rockchip/ | 36 | obj-$(CONFIG_CRYPTO_DEV_ROCKCHIP) += rockchip/ |
37 | obj-$(CONFIG_CRYPTO_DEV_S5P) += s5p-sss.o | 37 | obj-$(CONFIG_CRYPTO_DEV_S5P) += s5p-sss.o |
38 | obj-$(CONFIG_CRYPTO_DEV_SAHARA) += sahara.o | 38 | obj-$(CONFIG_CRYPTO_DEV_SAHARA) += sahara.o |
39 | obj-$(CONFIG_CRYPTO_DEV_STM32) += stm32/ | 39 | obj-$(CONFIG_ARCH_STM32) += stm32/ |
40 | obj-$(CONFIG_CRYPTO_DEV_SUN4I_SS) += sunxi-ss/ | 40 | obj-$(CONFIG_CRYPTO_DEV_SUN4I_SS) += sunxi-ss/ |
41 | obj-$(CONFIG_CRYPTO_DEV_TALITOS) += talitos.o | 41 | obj-$(CONFIG_CRYPTO_DEV_TALITOS) += talitos.o |
42 | obj-$(CONFIG_CRYPTO_DEV_UX500) += ux500/ | 42 | obj-$(CONFIG_CRYPTO_DEV_UX500) += ux500/ |
diff --git a/drivers/crypto/stm32/Kconfig b/drivers/crypto/stm32/Kconfig index 09b4ec87c212..7dd14f8d294e 100644 --- a/drivers/crypto/stm32/Kconfig +++ b/drivers/crypto/stm32/Kconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | config CRYPTO_DEV_STM32 | 1 | config CRC_DEV_STM32 |
2 | tristate "Support for STM32 crypto accelerators" | 2 | tristate "Support for STM32 crc accelerators" |
3 | depends on ARCH_STM32 | 3 | depends on ARCH_STM32 |
4 | select CRYPTO_HASH | 4 | select CRYPTO_HASH |
5 | help | 5 | help |
6 | This enables support for the CRC32 hw accelerator which can be found | 6 | This enables support for the CRC32 hw accelerator which can be found |
7 | on STMicroelectronis STM32 SOC. | 7 | on STMicroelectronics STM32 SOC. |
diff --git a/drivers/crypto/stm32/Makefile b/drivers/crypto/stm32/Makefile index 73b4c6e47f5f..4db2f283068d 100644 --- a/drivers/crypto/stm32/Makefile +++ b/drivers/crypto/stm32/Makefile | |||
@@ -1,2 +1 @@ | |||
1 | obj-$(CONFIG_CRYPTO_DEV_STM32) += stm32_cryp.o | obj-$(CONFIG_CRC_DEV_STM32) += stm32_crc32.o | |
2 | stm32_cryp-objs := stm32_crc32.o | ||