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 <[email protected]> Cc: Andreas Gruenbacher <[email protected]> Cc: Jens Axboe <[email protected]> Cc: Philipp Reisner <[email protected]> Cc: Randy Dunlap <[email protected]> --- 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

