diff options
author | Stephen Boyd <swboyd@chromium.org> | 2018-03-23 12:34:51 -0400 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2018-03-27 09:34:13 -0400 |
commit | ace56935ff48879239d79129c7882ea2ff1b4804 (patch) | |
tree | 76ef74a6bf7640a4a2cacff581aa7fe49070ee8f | |
parent | e4371f6e079294369ecb4cfa03aaeb60831e8b91 (diff) |
gpiolib: Change bitmap allocation to kmalloc_array
We don't need to clear out these bits when we set them immediately
after. Use kmalloc_array() to skip clearing the bits.
Suggested-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Stephen Boyd <swboyd@chromium.org>
Tested-by: Timur Tabi <timur@codeaurora.org>
Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
-rw-r--r-- | drivers/gpio/gpiolib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpio/gpiolib.c b/drivers/gpio/gpiolib.c index cc0e1519da45..db3788d17ba0 100644 --- a/drivers/gpio/gpiolib.c +++ b/drivers/gpio/gpiolib.c | |||
@@ -341,7 +341,7 @@ static unsigned long *gpiochip_allocate_mask(struct gpio_chip *chip) | |||
341 | { | 341 | { |
342 | unsigned long *p; | 342 | unsigned long *p; |
343 | 343 | ||
344 | p = kcalloc(BITS_TO_LONGS(chip->ngpio), sizeof(long), GFP_KERNEL); | 344 | p = kmalloc_array(BITS_TO_LONGS(chip->ngpio), sizeof(*p), GFP_KERNEL); |
345 | if (!p) | 345 | if (!p) |
346 | return NULL; | 346 | return NULL; |
347 | 347 | ||