diff options
| author | Chia-Wei Wang <[email protected]> | 2021-07-30 09:08:03 +0800 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2021-09-01 19:25:37 -0400 |
| commit | 4deaff791cd44e95e545ad8cd74dea25b4993499 (patch) | |
| tree | c36e6417839ca6abe121dba19467d0e3bc874fdf /drivers/crypto/hash/Makefile | |
| parent | 74bda4fe3d6d153a6b66b5f1e412c32b718bcfbc (diff) | |
dm: hash: Add new UCLASS_HASH support
Add UCLASS_HASH for hash driver development. Thus the
hash drivers (SW or HW-accelerated) can be developed
in the DM-based fashion.
Signed-off-by: Chia-Wei Wang <[email protected]>
Diffstat (limited to 'drivers/crypto/hash/Makefile')
| -rw-r--r-- | drivers/crypto/hash/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/crypto/hash/Makefile b/drivers/crypto/hash/Makefile new file mode 100644 index 00000000000..83acf3d47b4 --- /dev/null +++ b/drivers/crypto/hash/Makefile @@ -0,0 +1,5 @@ +# SPDX-License-Identifier: GPL-2.0+ +# +# Copyright (c) 2021 ASPEED Technology Inc. + +obj-$(CONFIG_DM_HASH) += hash-uclass.o |
