mirror of
https://github.com/torvalds/linux.git
synced 2024-12-29 14:21:47 +00:00
94476b2b6d
Considering that the qm feature and debugfs feature are independent. The code related to debugfs is getting larger and larger. It should be separate as a debugfs file. So move some debugfs code to new file from qm file. The qm code logic is not modified. And maintainability is enhanced. Signed-off-by: Kai Ye <yekai13@huawei.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
9 lines
333 B
Makefile
9 lines
333 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
obj-$(CONFIG_CRYPTO_DEV_HISI_HPRE) += hpre/
|
|
obj-$(CONFIG_CRYPTO_DEV_HISI_SEC) += sec/
|
|
obj-$(CONFIG_CRYPTO_DEV_HISI_SEC2) += sec2/
|
|
obj-$(CONFIG_CRYPTO_DEV_HISI_QM) += hisi_qm.o
|
|
hisi_qm-objs = qm.o sgl.o debugfs.o
|
|
obj-$(CONFIG_CRYPTO_DEV_HISI_ZIP) += zip/
|
|
obj-$(CONFIG_CRYPTO_DEV_HISI_TRNG) += trng/
|