diff options
author | Mauro Carvalho Chehab <mchehab+huawei@kernel.org> | 2020-10-13 14:14:43 +0200 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2020-10-14 18:07:50 +0200 |
commit | ed3e453798d4f81c99056aa09fcd79d0874a60fd (patch) | |
tree | 6af095c460b3bfbebac16b56382458a496187851 | |
parent | 2646fb032f511862312ec8eb7f774aaededf310d (diff) | |
download | linux-ed3e453798d4f81c99056aa09fcd79d0874a60fd.tar.gz linux-ed3e453798d4f81c99056aa09fcd79d0874a60fd.tar.bz2 linux-ed3e453798d4f81c99056aa09fcd79d0874a60fd.zip |
locking/seqlocks: Fix kernel-doc warnings
Right now, seqlock.h produces kernel-doc warnings:
./include/linux/seqlock.h:181: error: Cannot parse typedef!
Convert it to a plain comment to avoid confusing kernel-doc.
Fixes: a8772dccb2ec ("seqlock: Fold seqcount_LOCKNAME_t definition")
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Link: https://lore.kernel.org/r/a59144cdaadf7fdf1fe5d55d0e1575abbf1c0cb3.1602590106.git.mchehab+huawei@kernel.org
-rw-r--r-- | include/linux/seqlock.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/seqlock.h b/include/linux/seqlock.h index ac5b07f558b0..cbfc78b92b65 100644 --- a/include/linux/seqlock.h +++ b/include/linux/seqlock.h @@ -154,7 +154,7 @@ static inline void seqcount_lockdep_reader_access(const seqcount_t *s) #define __SEQ_LOCK(expr) #endif -/** +/* * typedef seqcount_LOCKNAME_t - sequence counter with LOCKNAME associated * @seqcount: The real sequence counter * @lock: Pointer to the associated lock |