gpio: refactor gpiochip_allocate_mask() with bitmap_alloc()
authorMasahiro Yamada <yamada.masahiro@socionext.com>
Thu, 18 Jul 2019 06:51:01 +0000 (15:51 +0900)
committerLinus Walleij <linus.walleij@linaro.org>
Fri, 2 Aug 2019 22:25:25 +0000 (00:25 +0200)
commit7bdbd1eccc9fb3875f33af1a2257001128824e81
tree939dc5de5c863d10210f193b8b1bbe7c3d90df1a
parentbd4bd337039df9d5c6a3c11c439511fd99e11f52
gpio: refactor gpiochip_allocate_mask() with bitmap_alloc()

Refactor gpiochip_allocate_mask() slightly by using bitmap_alloc().

I used bitmap_free() for the corresponding free parts. Actually,
bitmap_free() is a wrapper of kfree(), but I did this for consistency.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Link: https://lore.kernel.org/r/20190718065101.26994-1-yamada.masahiro@socionext.com
Reviewed-by: Stephen Boyd <swboyd@chromium.org>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/gpio/gpiolib.c