[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20240822075456.1370350-1-11162571@vivo.com>
Date: Thu, 22 Aug 2024 15:54:55 +0800
From: Yang Ruibin <11162571@...o.com>
To: Marcel Holtmann <marcel@...tmann.org>,
Johan Hedberg <johan.hedberg@...il.com>,
Luiz Augusto von Dentz <luiz.dentz@...il.com>,
Stephen Rothwell <sfr@...b.auug.org.au>,
Yang Ruibin <11162571@...o.com>,
linux-bluetooth@...r.kernel.org,
linux-kernel@...r.kernel.org
Cc: opensource.kernel@...o.com
Subject: [PATCH v1] net:hidp:Use min macro
Instead of using the min() implementation of
the ternary operator, use real macros.
Signed-off-by: Yang Ruibin <11162571@...o.com>
---
net/bluetooth/hidp/core.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net/bluetooth/hidp/core.c b/net/bluetooth/hidp/core.c
index 707f229f8..7bf24f299 100644
--- a/net/bluetooth/hidp/core.c
+++ b/net/bluetooth/hidp/core.c
@@ -294,7 +294,7 @@ static int hidp_get_raw_report(struct hid_device *hid,
skb = session->report_return;
if (skb) {
- len = skb->len < count ? skb->len : count;
+ len = min(skb->len, count);
memcpy(data, skb->data, len);
kfree_skb(skb);
--
2.34.1
Powered by blists - more mailing lists