diff mbox series

[v2] staging: qlge/qlge_main: Use min_t instead of min

Message ID 20210205092433.4131-1-ameynarkhede02@gmail.com (mailing list archive)
State Changes Requested
Headers show
Series [v2] staging: qlge/qlge_main: Use min_t instead of min | expand

Checks

Context Check Description
netdev/tree_selection success Not a local patch

Commit Message

Amey Narkhede Feb. 5, 2021, 9:24 a.m. UTC
From: Amey Narkhede <ameynarkhede02@gmail.com>

Use min_t instead of min function in qlge/qlge_main.c
Fixes following checkpatch.pl warning:
WARNING: min() should probably be min_t(int, MAX_CPUS, num_online_cpus())

Signed-off-by: Amey Narkhede <ameynarkhede02@gmail.com>
---
Changes in v2:
	- Remove superfluous int cast from num_online_cpus

 drivers/staging/qlge/qlge_main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--
2.30.0
diff mbox series

Patch

diff --git a/drivers/staging/qlge/qlge_main.c b/drivers/staging/qlge/qlge_main.c
index 402edaeff..213bd11e7 100644
--- a/drivers/staging/qlge/qlge_main.c
+++ b/drivers/staging/qlge/qlge_main.c
@@ -3938,7 +3938,7 @@  static int ql_configure_rings(struct ql_adapter *qdev)
 	int i;
 	struct rx_ring *rx_ring;
 	struct tx_ring *tx_ring;
-	int cpu_cnt = min(MAX_CPUS, (int)num_online_cpus());
+	int cpu_cnt = min_t(int, MAX_CPUS, num_online_cpus());

 	/* In a perfect world we have one RSS ring for each CPU
 	 * and each has it's own vector.  To do that we ask for