diff options
author | Gary R Hook <gary.hook@amd.com> | 2017-05-03 01:33:40 +0300 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2017-06-19 09:11:47 +0300 |
commit | 3cdbe346ed3f380eae1cb3e9febfe703e7d8a7b0 (patch) | |
tree | 8126f8342958f529bf10645f3af9f62e660a0e0b /drivers/crypto/ccp/Makefile | |
parent | 03d2c5114c95797c0aa7d9f463348b171a274fd4 (diff) | |
download | linux-3cdbe346ed3f380eae1cb3e9febfe703e7d8a7b0.tar.xz |
crypto: ccp - Add debugfs entries for CCP information
Expose some data about the configuration and operation of the CCP
through debugfs entries: device name, capabilities, configuration,
statistics.
Allow the user to reset the counters to zero by writing (any value)
to the 'stats' file. This can be done per queue or per device.
Changes from V1:
- Correct polarity of test when destroying devices at module unload
Signed-off-by: Gary R Hook <gary.hook@amd.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'drivers/crypto/ccp/Makefile')
-rw-r--r-- | drivers/crypto/ccp/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/crypto/ccp/Makefile b/drivers/crypto/ccp/Makefile index 60919a3ec53b..59493fd3a751 100644 --- a/drivers/crypto/ccp/Makefile +++ b/drivers/crypto/ccp/Makefile @@ -4,7 +4,8 @@ ccp-objs := ccp-dev.o \ ccp-dev-v3.o \ ccp-dev-v5.o \ ccp-platform.o \ - ccp-dmaengine.o + ccp-dmaengine.o \ + ccp-debugfs.o ccp-$(CONFIG_PCI) += ccp-pci.o obj-$(CONFIG_CRYPTO_DEV_CCP_CRYPTO) += ccp-crypto.o |