public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] crypto: qat - Replace the if statement with min()
@ 2023-06-27  7:17 You Kangren
  2023-06-28 10:46 ` Andy Shevchenko
  0 siblings, 1 reply; 4+ messages in thread
From: You Kangren @ 2023-06-27  7:17 UTC (permalink / raw)
  To: Giovanni Cabiddu, Herbert Xu, David S. Miller, You Kangren,
	Andy Shevchenko, Tom Zanussi, Damian Muszynski, Srinivas Kerekare,
	open list:QAT DRIVER, open list:CRYPTO API, open list
  Cc: opensource.kernel

Replace the if statement with min_t() to simplify the code

Signed-off-by: You Kangren <youkangren@vivo.com>
---
 drivers/crypto/intel/qat/qat_common/qat_uclo.c | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/drivers/crypto/intel/qat/qat_common/qat_uclo.c b/drivers/crypto/intel/qat/qat_common/qat_uclo.c
index ce837bcc1cab..b42a4d22b9d2 100644
--- a/drivers/crypto/intel/qat/qat_common/qat_uclo.c
+++ b/drivers/crypto/intel/qat/qat_common/qat_uclo.c
@@ -1986,10 +1986,7 @@ static void qat_uclo_wr_uimage_raw_page(struct icp_qat_fw_loader_handle *handle,
 	uw_relative_addr = 0;
 	words_num = encap_page->micro_words_num;
 	while (words_num) {
-		if (words_num < UWORD_CPYBUF_SIZE)
-			cpylen = words_num;
-		else
-			cpylen = UWORD_CPYBUF_SIZE;
+		cpylen = min_t(unsigned int, words_num, UWORD_CPYBUF_SIZE);
 
 		/* load the buffer */
 		for (i = 0; i < cpylen; i++)
-- 
2.39.0


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-06-28 14:39 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-06-27  7:17 [PATCH v2] crypto: qat - Replace the if statement with min() You Kangren
2023-06-28 10:46 ` Andy Shevchenko
2023-06-28 13:11   ` [PATCH] crypto: qat - use min() in fw loader Giovanni Cabiddu
2023-06-28 14:38     ` Andy Shevchenko

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox