Commit 6ec5e8b5 authored by Zhangfei Gao's avatar Zhangfei Gao Committed by Herbert Xu

crypto: hisilicon - fix strncpy warning with strscpy

Use strscpy to fix the warning
warning: 'strncpy' specified bound 64 equals destination size
Reported-by: default avatarkernel test robot <lkp@intel.com>
Signed-off-by: default avatarZhangfei Gao <zhangfei.gao@linaro.org>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent a05b1c15
...@@ -2170,8 +2170,12 @@ static int qm_alloc_uacce(struct hisi_qm *qm) ...@@ -2170,8 +2170,12 @@ static int qm_alloc_uacce(struct hisi_qm *qm)
.flags = UACCE_DEV_SVA, .flags = UACCE_DEV_SVA,
.ops = &uacce_qm_ops, .ops = &uacce_qm_ops,
}; };
int ret;
strncpy(interface.name, pdev->driver->name, sizeof(interface.name)); ret = strscpy(interface.name, pdev->driver->name,
sizeof(interface.name));
if (ret < 0)
return -ENAMETOOLONG;
uacce = uacce_alloc(&pdev->dev, &interface); uacce = uacce_alloc(&pdev->dev, &interface);
if (IS_ERR(uacce)) if (IS_ERR(uacce))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment