staging: mt7621-pinctrl: make use of pinctrl_utils_reserve_map
Function rt2880_pinctrl_dt_node_to_map was using 'kzalloc' to reserve map memory. There is a 'pinctrl_utils_reserve_map' to do this function. Just use it. Signed-off-by: Sergio Paracuellos <sergio.paracuellos@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
4a1cf86bce
commit
62b6215c11
@ -113,7 +113,10 @@ static int rt2880_pinctrl_dt_node_to_map(struct pinctrl_dev *pctrldev,
|
|||||||
struct pinctrl_map **map,
|
struct pinctrl_map **map,
|
||||||
unsigned int *num_maps)
|
unsigned int *num_maps)
|
||||||
{
|
{
|
||||||
|
struct rt2880_priv *p = pinctrl_dev_get_drvdata(pctrldev);
|
||||||
|
int ret;
|
||||||
int max_maps = 0;
|
int max_maps = 0;
|
||||||
|
unsigned int reserved_maps = 0;
|
||||||
struct pinctrl_map *tmp;
|
struct pinctrl_map *tmp;
|
||||||
struct device_node *np;
|
struct device_node *np;
|
||||||
|
|
||||||
@ -127,9 +130,12 @@ static int rt2880_pinctrl_dt_node_to_map(struct pinctrl_dev *pctrldev,
|
|||||||
if (!max_maps)
|
if (!max_maps)
|
||||||
return max_maps;
|
return max_maps;
|
||||||
|
|
||||||
*map = kcalloc(max_maps, sizeof(struct pinctrl_map), GFP_KERNEL);
|
ret = pinctrl_utils_reserve_map(pctrldev, map, &reserved_maps,
|
||||||
if (!*map)
|
num_maps, max_maps);
|
||||||
return -ENOMEM;
|
if (ret) {
|
||||||
|
dev_err(p->dev, "can't reserve map: %d\n", ret);
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
tmp = *map;
|
tmp = *map;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user