mirror of
https://github.com/torvalds/linux.git
synced 2026-04-18 14:53:58 -04:00
usb: gadget: function: Remove usage of the deprecated ida_simple_xx() API
ida_alloc() and ida_free() should be preferred to the deprecated ida_simple_get() and ida_simple_remove(). Note that the upper limit of ida_simple_get() is exclusive, but the one of ida_alloc_max() is inclusive. So a -1 has been added when needed. Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr> Link: https://lore.kernel.org/r/7cd361e2b377a5373968fa7deee4169229992a1e.1713107386.git.christophe.jaillet@wanadoo.fr Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
3d122e6d27
commit
920e7522e3
@@ -1312,9 +1312,9 @@ static inline int gprinter_get_minor(void)
|
||||
{
|
||||
int ret;
|
||||
|
||||
ret = ida_simple_get(&printer_ida, 0, 0, GFP_KERNEL);
|
||||
ret = ida_alloc(&printer_ida, GFP_KERNEL);
|
||||
if (ret >= PRINTER_MINORS) {
|
||||
ida_simple_remove(&printer_ida, ret);
|
||||
ida_free(&printer_ida, ret);
|
||||
ret = -ENODEV;
|
||||
}
|
||||
|
||||
@@ -1323,7 +1323,7 @@ static inline int gprinter_get_minor(void)
|
||||
|
||||
static inline void gprinter_put_minor(int minor)
|
||||
{
|
||||
ida_simple_remove(&printer_ida, minor);
|
||||
ida_free(&printer_ida, minor);
|
||||
}
|
||||
|
||||
static int gprinter_setup(int);
|
||||
|
||||
Reference in New Issue
Block a user