projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a292f25
)
crypto: hisilicon/qm - use min() instead of min_t()
author
Weili Qian
<qianweili@huawei.com>
Thu, 9 Feb 2023 12:36:14 +0000
(20:36 +0800)
committer
Herbert Xu
<herbert@gondor.apana.org.au>
Tue, 14 Feb 2023 05:39:33 +0000
(13:39 +0800)
'act_q_num = min_t(int, act_q_num, max_qp_num)', the type
of 'act_q_num' and 'max_qp_num' are both 'u32', so
use min() instead of min_t().
Signed-off-by: Weili Qian <qianweili@huawei.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
drivers/crypto/hisilicon/qm.c
patch
|
blob
|
history
diff --git
a/drivers/crypto/hisilicon/qm.c
b/drivers/crypto/hisilicon/qm.c
index 547626718484c1ce30130654b8c1208b8bbeba71..93b2f07b567de195acdc880dcc9d726c878e4846 100644
(file)
--- a/
drivers/crypto/hisilicon/qm.c
+++ b/
drivers/crypto/hisilicon/qm.c
@@
-3361,7
+3361,7
@@
static int qm_vf_q_assign(struct hisi_qm *qm, u32 num_vfs)
act_q_num = q_num;
}
- act_q_num = min
_t(int,
act_q_num, max_qp_num);
+ act_q_num = min
(
act_q_num, max_qp_num);
ret = hisi_qm_set_vft(qm, i, q_base, act_q_num);
if (ret) {
for (j = num_vfs; j > i; j--)