[PATCH] idr: fix kernel-doc header for idr_for_each_entry_continue

From: Ian Abbott
Date: Mon Apr 25 2016 - 08:49:59 EST


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@xxxxxxxxx>
Cc: Andreas Gruenbacher <agruen@xxxxxxxxxx>
Cc: Jens Axboe <axboe@xxxxxx>
Cc: Philipp Reisner <philipp.reisner@xxxxxxxxxx>
Cc: Randy Dunlap <rdunlap@xxxxxxxxxxxxx>
---
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