aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/crypto/stm32/Makefile
diff options
context:
space:
mode:
authorCorentin Labbe <clabbe@baylibre.com>2017-12-20 18:19:32 +0000
committerHerbert Xu <herbert@gondor.apana.org.au>2017-12-28 17:56:50 +1100
commit02d9e320c693cc14512836a54ce3953e399fd3a8 (patch)
tree525820cb1a71be6af1bd24d60e306072ad947b02 /drivers/crypto/stm32/Makefile
parentcrypto: scomp - delete unused comments (diff)
downloadlinux-dev-02d9e320c693cc14512836a54ce3953e399fd3a8.tar.xz
linux-dev-02d9e320c693cc14512836a54ce3953e399fd3a8.zip
crypto: stm32 - Use standard CONFIG name
All hardware crypto devices have their CONFIG names using the following convention: CRYPTO_DEV_name_algo This patch apply this conventions on STM32 CONFIG names. Signed-off-by: Corentin Labbe <clabbe@baylibre.com> Reviewed-by: Fabien Dessenne <fabien.dessenne@st.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'drivers/crypto/stm32/Makefile')
-rw-r--r--drivers/crypto/stm32/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/crypto/stm32/Makefile b/drivers/crypto/stm32/Makefile
index 2c19fc155bfd..53d1bb94b221 100644
--- a/drivers/crypto/stm32/Makefile
+++ b/drivers/crypto/stm32/Makefile
@@ -1,3 +1,3 @@
-obj-$(CONFIG_CRC_DEV_STM32) += stm32_crc32.o
-obj-$(CONFIG_HASH_DEV_STM32) += stm32-hash.o
-obj-$(CONFIG_CRYP_DEV_STM32) += stm32-cryp.o
+obj-$(CONFIG_CRYPTO_DEV_STM32_CRC) += stm32_crc32.o
+obj-$(CONFIG_CRYPTO_DEV_STM32_HASH) += stm32-hash.o
+obj-$(CONFIG_CRYPTO_DEV_STM32_CRYP) += stm32-cryp.o