dect
/
linux-2.6
Archived
13
0
Fork 0

idr: export idr_get_next()

idr_get_next() was accidentally not exported when added.  It is about
to be used by mtdcore, which may be built as a module.

Signed-off-by: Ben Hutchings <bhutchings@solarflare.com>
Acked-by: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
This commit is contained in:
Ben Hutchings 2010-01-29 20:59:17 +00:00 committed by David Woodhouse
parent cbfe93e9ce
commit 4d1ee80f3a
1 changed files with 1 additions and 1 deletions

View File

@ -621,7 +621,7 @@ void *idr_get_next(struct idr *idp, int *nextidp)
}
return NULL;
}
EXPORT_SYMBOL(idr_get_next);
/**