From: Meng Yu Date: Fri, 10 Jul 2020 07:40:41 +0000 (+0800) Subject: crypto: hisilicon/hpre - Init the value of current_q of debugfs X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=d7ba2c09e1aa03e01e1e3be55c8a5f4610500164;p=linux.git crypto: hisilicon/hpre - Init the value of current_q of debugfs Initialize current queue number as HPRE_PF_DEF_Q_NUM, or it is zero and we can't set its value by "current_q_write". Signed-off-by: Meng Yu Reviewed-by: Zaibo Xu Reviewed-by: Hui Tang Signed-off-by: Herbert Xu --- diff --git a/drivers/crypto/hisilicon/hpre/hpre_main.c b/drivers/crypto/hisilicon/hpre/hpre_main.c index a3ee127a70e39..31313479a8ec1 100644 --- a/drivers/crypto/hisilicon/hpre/hpre_main.c +++ b/drivers/crypto/hisilicon/hpre/hpre_main.c @@ -732,6 +732,7 @@ static int hpre_qm_init(struct hisi_qm *qm, struct pci_dev *pdev) if (qm->fun_type == QM_HW_PF) { qm->qp_base = HPRE_PF_DEF_Q_BASE; qm->qp_num = pf_q_num; + qm->debug.curr_qm_qp_num = pf_q_num; qm->qm_list = &hpre_devices; }