crypto: hisilicon/hpre - delete redundant '\n'
It has newline already by sysfs, so delete redundant '\n' Signed-off-by: Hui Tang <tanghui20@huawei.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
09fd266f17
commit
9bb3fbbff3
2 changed files with 3 additions and 3 deletions
|
|
@ -752,9 +752,9 @@ static int hpre_qm_init(struct hisi_qm *qm, struct pci_dev *pdev)
|
|||
}
|
||||
|
||||
if (pdev->revision >= QM_HW_V3)
|
||||
qm->algs = "rsa\ndh\necdh\nx25519\nx448\necdsa\nsm2\n";
|
||||
qm->algs = "rsa\ndh\necdh\nx25519\nx448\necdsa\nsm2";
|
||||
else
|
||||
qm->algs = "rsa\ndh\n";
|
||||
qm->algs = "rsa\ndh";
|
||||
qm->mode = uacce_mode;
|
||||
qm->pdev = pdev;
|
||||
qm->ver = pdev->revision;
|
||||
|
|
|
|||
|
|
@ -744,7 +744,7 @@ static int sec_qm_init(struct hisi_qm *qm, struct pci_dev *pdev)
|
|||
|
||||
qm->pdev = pdev;
|
||||
qm->ver = pdev->revision;
|
||||
qm->algs = "cipher\ndigest\naead\n";
|
||||
qm->algs = "cipher\ndigest\naead";
|
||||
qm->mode = uacce_mode;
|
||||
qm->sqe_size = SEC_SQE_SIZE;
|
||||
qm->dev_name = sec_name;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue