forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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 <[email protected]> Reviewed-by: Fabien Dessenne <[email protected]> Signed-off-by: Herbert Xu <[email protected]>
- Loading branch information
Showing
2 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |