[<prev] [next>] [day] [month] [year] [list]
Message-ID: <162330856342.29796.8872573019245228294.tip-bot2@tip-bot2>
Date: Thu, 10 Jun 2021 07:02:43 -0000
From: "tip-bot2 for Huilong Deng" <tip-bot2@...utronix.de>
To: linux-tip-commits@...r.kernel.org
Cc: Huilong Deng <denghuilong@...rlc.com>,
"Peter Zijlstra (Intel)" <peterz@...radead.org>, x86@...nel.org,
linux-kernel@...r.kernel.org
Subject: [tip: locking/core] seqlock: Remove trailing semicolon in macros
The following commit has been merged into the locking/core branch of tip:
Commit-ID: 149876d96877eedce0ae3ffbd64edb56360b8926
Gitweb: https://git.kernel.org/tip/149876d96877eedce0ae3ffbd64edb56360b8926
Author: Huilong Deng <denghuilong@...rlc.com>
AuthorDate: Sat, 05 Jun 2021 12:53:02 +08:00
Committer: Peter Zijlstra <peterz@...radead.org>
CommitterDate: Tue, 08 Jun 2021 20:04:10 +02:00
seqlock: Remove trailing semicolon in macros
Macros should not use a trailing semicolon.
Signed-off-by: Huilong Deng <denghuilong@...rlc.com>
Signed-off-by: Peter Zijlstra (Intel) <peterz@...radead.org>
Link: https://lkml.kernel.org/r/20210605045302.37154-1-denghuilong@cdjrlc.com
---
include/linux/seqlock.h | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/include/linux/seqlock.h b/include/linux/seqlock.h
index f61e34f..37ded6b 100644
--- a/include/linux/seqlock.h
+++ b/include/linux/seqlock.h
@@ -182,9 +182,9 @@ static inline void seqcount_lockdep_reader_access(const seqcount_t *s)
#define seqcount_raw_spinlock_init(s, lock) seqcount_LOCKNAME_init(s, lock, raw_spinlock)
#define seqcount_spinlock_init(s, lock) seqcount_LOCKNAME_init(s, lock, spinlock)
-#define seqcount_rwlock_init(s, lock) seqcount_LOCKNAME_init(s, lock, rwlock);
-#define seqcount_mutex_init(s, lock) seqcount_LOCKNAME_init(s, lock, mutex);
-#define seqcount_ww_mutex_init(s, lock) seqcount_LOCKNAME_init(s, lock, ww_mutex);
+#define seqcount_rwlock_init(s, lock) seqcount_LOCKNAME_init(s, lock, rwlock)
+#define seqcount_mutex_init(s, lock) seqcount_LOCKNAME_init(s, lock, mutex)
+#define seqcount_ww_mutex_init(s, lock) seqcount_LOCKNAME_init(s, lock, ww_mutex)
/*
* SEQCOUNT_LOCKNAME() - Instantiate seqcount_LOCKNAME_t and helpers
Powered by blists - more mailing lists