[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20230626104829.1896-1-youkangren@vivo.com>
Date: Mon, 26 Jun 2023 18:48:29 +0800
From: You Kangren <youkangren@...o.com>
To: Johannes Berg <johannes@...solutions.net>,
"David S. Miller" <davem@...emloft.net>,
Eric Dumazet <edumazet@...gle.com>,
Jakub Kicinski <kuba@...nel.org>,
Paolo Abeni <pabeni@...hat.com>,
linux-wireless@...r.kernel.org (open list:MAC80211),
netdev@...r.kernel.org (open list:NETWORKING [GENERAL]),
linux-kernel@...r.kernel.org (open list)
Cc: opensource.kernel@...o.com, youkangren@...o.com
Subject: [PATCH] wifi:mac80211: Replace the ternary conditional operator with max()
Replace the ternary conditional operator with max() to make the code clean
Signed-off-by: You Kangren <youkangren@...o.com>
---
net/mac80211/tdls.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net/mac80211/tdls.c b/net/mac80211/tdls.c
index a4af3b7675ef..9f8b0842a616 100644
--- a/net/mac80211/tdls.c
+++ b/net/mac80211/tdls.c
@@ -946,7 +946,7 @@ ieee80211_tdls_build_mgmt_packet_data(struct ieee80211_sub_if_data *sdata,
int ret;
struct ieee80211_link_data *link;
- link_id = link_id >= 0 ? link_id : 0;
+ link_id = max(link_id, 0);
rcu_read_lock();
link = rcu_dereference(sdata->link[link_id]);
if (WARN_ON(!link))
--
2.39.0
Powered by blists - more mailing lists