Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1386388 > unrolled thread
| Started by | Ian Abbott <abbotti@mev.co.uk> |
|---|---|
| First post | 2016-04-25 15:00 +0200 |
| Last post | 2016-04-25 15:00 +0200 |
| Articles | 1 — 1 participant |
Back to article view | Back to linux.kernel
[PATCH] idr: fix kernel-doc header for idr_for_each_entry_continue Ian Abbott <abbotti@mev.co.uk> - 2016-04-25 15:00 +0200
| From | Ian Abbott <abbotti@mev.co.uk> |
|---|---|
| Date | 2016-04-25 15:00 +0200 |
| Subject | [PATCH] idr: fix kernel-doc header for idr_for_each_entry_continue |
| Message-ID | <rrOhl-643-15@gated-at.bofh.it> |
In the kernel-doc comment for the `idr_for_each_entry_continue`, it is called `idr_for_each_entry`. Correct the name in the comment. Signed-off-by: Ian Abbott <abbotti@mev.co.uk> Cc: Andreas Gruenbacher <agruen@linbit.com> Cc: Jens Axboe <axboe@fb.com> Cc: Philipp Reisner <philipp.reisner@linbit.com> Cc: Randy Dunlap <rdunlap@infradead.org> --- include/linux/idr.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/linux/idr.h b/include/linux/idr.h index 083d61e..4cbfa7c 100644 --- a/include/linux/idr.h +++ b/include/linux/idr.h @@ -136,7 +136,8 @@ static inline void *idr_find(struct idr *idr, int id) for (id = 0; ((entry) = idr_get_next(idp, &(id))) != NULL; ++id) /** - * idr_for_each_entry - continue iteration over an idr's elements of a given type + * idr_for_each_entry_continue - continue iteration over an idr's elements of + * a given type * @idp: idr handle * @entry: the type * to use as cursor * @id: id entry's key -- 2.8.0.rc3
Back to top | Article view | linux.kernel
csiph-web