Remove redundant declaration after r341517.

MFC after:		1 week
Sponsored by:		Mellanox Technologies
This commit is contained in:
Hans Petter Selasky 2018-12-05 15:56:44 +00:00
parent 6da0d28e6a
commit 52da588961
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=341592

View File

@ -91,7 +91,6 @@ void idr_init(struct idr *idp);
int idr_alloc(struct idr *idp, void *ptr, int start, int end, gfp_t);
int idr_alloc_cyclic(struct idr *idp, void *ptr, int start, int end, gfp_t);
int idr_for_each(struct idr *idp, int (*fn)(int id, void *p, void *data), void *data);
bool idr_is_empty(struct idr *idp);
#define idr_for_each_entry(idp, entry, id) \
for ((id) = 0; ((entry) = idr_get_next(idp, &(id))) != NULL; ++(id))