diff options
author | Shukun Tan <tanshukun1@huawei.com> | 2020-05-15 11:14:00 +0200 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2020-05-22 16:08:23 +0200 |
commit | 988453fb2f18be3f3915220e4c6f18018186aa89 (patch) | |
tree | 741a6dcb77de54f498c6fdef81814bea100c99a7 /drivers/crypto | |
parent | crypto: hisilicon/qm - add DebugFS for xQC and xQE dump (diff) | |
download | linux-988453fb2f18be3f3915220e4c6f18018186aa89.tar.xz linux-988453fb2f18be3f3915220e4c6f18018186aa89.zip |
crypto: hisilicon/qm - change debugfs file name from qm_regs to regs
The debugfs qm_regs file is already in the qm directory, so no qm_ prefix
is required.
Signed-off-by: Shukun Tan <tanshukun1@huawei.com>
Reviewed-by: Zhou Wang <wangzhou1@hisilicon.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'drivers/crypto')
-rw-r--r-- | drivers/crypto/hisilicon/qm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/crypto/hisilicon/qm.c b/drivers/crypto/hisilicon/qm.c index 57ad13149e05..a781c0225198 100644 --- a/drivers/crypto/hisilicon/qm.c +++ b/drivers/crypto/hisilicon/qm.c @@ -2775,7 +2775,7 @@ int hisi_qm_debug_init(struct hisi_qm *qm) goto failed_to_create; } - debugfs_create_file("qm_regs", 0444, qm->debug.qm_d, qm, &qm_regs_fops); + debugfs_create_file("regs", 0444, qm->debug.qm_d, qm, &qm_regs_fops); debugfs_create_file("cmd", 0444, qm->debug.qm_d, qm, &qm_cmd_fops); |