summaryrefslogtreecommitdiff
path: root/drivers/crypto/hash/Makefile
diff options
context:
space:
mode:
authorChia-Wei Wang <[email protected]>2021-07-30 09:08:04 +0800
committerTom Rini <[email protected]>2021-09-01 19:25:37 -0400
commite5d870fa1ecbcd4efcc13fa6d69c6754e39cff62 (patch)
tree134a585c636535651b53be42a1dd3f5fca2dcf3b /drivers/crypto/hash/Makefile
parent4deaff791cd44e95e545ad8cd74dea25b4993499 (diff)
crypto: hash: Add software hash DM driver
Add purely software-implmented drivers to support multiple hash operations including CRC, MD5, and SHA family. This driver is based on the new hash uclass. Signed-off-by: Chia-Wei Wang <[email protected]>
Diffstat (limited to 'drivers/crypto/hash/Makefile')
-rw-r--r--drivers/crypto/hash/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/crypto/hash/Makefile b/drivers/crypto/hash/Makefile
index 83acf3d47b4..33d88161ed4 100644
--- a/drivers/crypto/hash/Makefile
+++ b/drivers/crypto/hash/Makefile
@@ -3,3 +3,4 @@
# Copyright (c) 2021 ASPEED Technology Inc.
obj-$(CONFIG_DM_HASH) += hash-uclass.o
+obj-$(CONFIG_HASH_SOFTWARE) += hash_sw.o