提交 a718cfce 编写于 作者: Z Zaibo Xu 提交者: Herbert Xu

crypto: hisilicon - fix print/comment of SEC V2

Fixed some print, coding style and comments of HiSilicon SEC V2.
Signed-off-by: NZaibo Xu <xuzaibo@huawei.com>
Signed-off-by: NHerbert Xu <herbert@gondor.apana.org.au>
上级 ca0d158d
...@@ -245,16 +245,16 @@ static int sec_skcipher_init(struct crypto_skcipher *tfm) ...@@ -245,16 +245,16 @@ static int sec_skcipher_init(struct crypto_skcipher *tfm)
sec = sec_find_device(cpu_to_node(smp_processor_id())); sec = sec_find_device(cpu_to_node(smp_processor_id()));
if (!sec) { if (!sec) {
pr_err("find no Hisilicon SEC device!\n"); pr_err("Can not find proper Hisilicon SEC device!\n");
return -ENODEV; return -ENODEV;
} }
ctx->sec = sec; ctx->sec = sec;
qm = &sec->qm; qm = &sec->qm;
dev = &qm->pdev->dev; dev = &qm->pdev->dev;
ctx->hlf_q_num = sec->ctx_q_num >> 0x1; ctx->hlf_q_num = sec->ctx_q_num >> 1;
/* Half of queue depth is taken as fake requests limit in the queue. */ /* Half of queue depth is taken as fake requests limit in the queue. */
ctx->fake_req_limit = QM_Q_DEPTH >> 0x1; ctx->fake_req_limit = QM_Q_DEPTH >> 1;
ctx->qp_ctx = kcalloc(sec->ctx_q_num, sizeof(struct sec_qp_ctx), ctx->qp_ctx = kcalloc(sec->ctx_q_num, sizeof(struct sec_qp_ctx),
GFP_KERNEL); GFP_KERNEL);
if (!ctx->qp_ctx) if (!ctx->qp_ctx)
...@@ -704,7 +704,7 @@ static int sec_process(struct sec_ctx *ctx, struct sec_req *req) ...@@ -704,7 +704,7 @@ static int sec_process(struct sec_ctx *ctx, struct sec_req *req)
ret = ctx->req_op->bd_send(ctx, req); ret = ctx->req_op->bd_send(ctx, req);
if (ret != -EBUSY && ret != -EINPROGRESS) { if (ret != -EBUSY && ret != -EINPROGRESS) {
dev_err(SEC_CTX_DEV(ctx), "send sec request failed!\n"); dev_err_ratelimited(SEC_CTX_DEV(ctx), "send sec request failed!\n");
goto err_send_req; goto err_send_req;
} }
......
...@@ -48,8 +48,8 @@ enum sec_addr_type { ...@@ -48,8 +48,8 @@ enum sec_addr_type {
struct sec_sqe_type2 { struct sec_sqe_type2 {
/* /*
* mac_len: 0~5 bits * mac_len: 0~4 bits
* a_key_len: 6~10 bits * a_key_len: 5~10 bits
* a_alg: 11~16 bits * a_alg: 11~16 bits
*/ */
__le32 mac_key_alg; __le32 mac_key_alg;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册