forked from Minki/linux
pinctrl: armada-37xx: Switch to use devm_kasprintf_strarray()
Since we have a generic helper, switch the module to use it. As a side effect, add check for the memory allocation failures and cleanup it either in error case or when driver is unloading. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Reviewed-by: Gregory CLEMENT <gregory.clement@bootlin.com>
This commit is contained in:
parent
06cb10ea0c
commit
b32b195d7f
@ -23,6 +23,7 @@
|
||||
#include <linux/platform_device.h>
|
||||
#include <linux/regmap.h>
|
||||
#include <linux/slab.h>
|
||||
#include <linux/string_helpers.h>
|
||||
|
||||
#include "../pinctrl-utils.h"
|
||||
|
||||
@ -951,6 +952,7 @@ static int armada_37xx_pinctrl_register(struct platform_device *pdev,
|
||||
struct pinctrl_desc *ctrldesc = &info->pctl;
|
||||
struct pinctrl_pin_desc *pindesc, *pdesc;
|
||||
struct device *dev = &pdev->dev;
|
||||
char **pin_names;
|
||||
int pin, ret;
|
||||
|
||||
info->groups = pin_data->groups;
|
||||
@ -969,11 +971,14 @@ static int armada_37xx_pinctrl_register(struct platform_device *pdev,
|
||||
ctrldesc->pins = pindesc;
|
||||
ctrldesc->npins = pin_data->nr_pins;
|
||||
|
||||
pin_names = devm_kasprintf_strarray(dev, pin_data->name, pin_data->nr_pins);
|
||||
if (IS_ERR(pin_names))
|
||||
return PTR_ERR(pin_names);
|
||||
|
||||
pdesc = pindesc;
|
||||
for (pin = 0; pin < pin_data->nr_pins; pin++) {
|
||||
pdesc->number = pin;
|
||||
pdesc->name = kasprintf(GFP_KERNEL, "%s-%d",
|
||||
pin_data->name, pin);
|
||||
pdesc->name = pin_names[pin];
|
||||
pdesc++;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user