[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20250221-rmv_return-v1-10-cc8dff275827@quicinc.com>
Date: Fri, 21 Feb 2025 05:02:15 -0800
From: Zijun Hu <quic_zijuhu@...cinc.com>
To: Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
Will Deacon
<will@...nel.org>,
Aneesh Kumar K.V <aneesh.kumar@...nel.org>,
Andrew Morton
<akpm@...ux-foundation.org>,
Nick Piggin <npiggin@...il.com>,
Peter Zijlstra
<peterz@...radead.org>, Arnd Bergmann <arnd@...db.de>,
Thomas Gleixner
<tglx@...utronix.de>,
Herbert Xu <herbert@...dor.apana.org.au>,
"David S.
Miller" <davem@...emloft.net>,
Greg Kroah-Hartman
<gregkh@...uxfoundation.org>,
"Rafael J. Wysocki" <rafael@...nel.org>,
"Danilo Krummrich" <dakr@...nel.org>,
Eric Dumazet <edumazet@...gle.com>, "Jakub Kicinski" <kuba@...nel.org>,
Paolo Abeni <pabeni@...hat.com>, Simon
Horman <horms@...nel.org>,
Johannes Berg <johannes@...solutions.net>,
"Jamal
Hadi Salim" <jhs@...atatu.com>,
Cong Wang <xiyou.wangcong@...il.com>, Jiri
Pirko <jiri@...nulli.us>,
Jason Gunthorpe <jgg@...pe.ca>, Leon Romanovsky
<leon@...nel.org>,
Linus Walleij <linus.walleij@...aro.org>,
"Bartosz
Golaszewski" <brgl@...ev.pl>, Lee Jones <lee@...nel.org>,
Thomas Graf
<tgraf@...g.ch>, Christoph Hellwig <hch@....de>,
Marek Szyprowski
<m.szyprowski@...sung.com>,
Robin Murphy <robin.murphy@....com>,
"Miquel
Raynal" <miquel.raynal@...tlin.com>,
Richard Weinberger <richard@....at>,
Vignesh Raghavendra <vigneshr@...com>
CC: Zijun Hu <zijun_hu@...oud.com>, <linux-arch@...r.kernel.org>,
<linux-mm@...ck.org>, <linux-kernel@...r.kernel.org>,
<linux-crypto@...r.kernel.org>, <netdev@...r.kernel.org>,
<linux-wireless@...r.kernel.org>, <linux-rdma@...r.kernel.org>,
<linux-gpio@...r.kernel.org>, <linux-pm@...r.kernel.org>,
<iommu@...ts.linux.dev>, <linux-mtd@...ts.infradead.org>,
Zijun Hu
<quic_zijuhu@...cinc.com>
Subject: [PATCH *-next 10/18] IB/rdmavt: Remove needless return in void API
rvt_mod_retry_timer()
Remove needless 'return' in void API rvt_mod_retry_timer() since
both the API and rvt_mod_retry_timer_ext() are void functions.
Signed-off-by: Zijun Hu <quic_zijuhu@...cinc.com>
---
include/rdma/rdmavt_qp.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/rdma/rdmavt_qp.h b/include/rdma/rdmavt_qp.h
index d67892944193..6b9ee610168c 100644
--- a/include/rdma/rdmavt_qp.h
+++ b/include/rdma/rdmavt_qp.h
@@ -735,7 +735,7 @@ static inline void rvt_mod_retry_timer_ext(struct rvt_qp *qp, u8 shift)
static inline void rvt_mod_retry_timer(struct rvt_qp *qp)
{
- return rvt_mod_retry_timer_ext(qp, 0);
+ rvt_mod_retry_timer_ext(qp, 0);
}
/**
--
2.34.1
Powered by blists - more mailing lists