mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
pinctrl: mxs: Use kfree to fix build error
commit 0bf7481
(pinctrl: pinctrl-mxs: Take care of frees if the kzalloc fails)
introduced the following build error:
drivers/pinctrl/pinctrl-mxs.c:140:3: error: implicit declaration of function 'free'
Use kfree function instead.
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Acked-by: Devendra Naga <devendra.aaru@gmail.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
parent
485802a6c5
commit
14e1e9f5ca
@ -137,7 +137,7 @@ static int mxs_dt_node_to_map(struct pinctrl_dev *pctldev,
|
||||
|
||||
free_group:
|
||||
if (!purecfg)
|
||||
free(group);
|
||||
kfree(group);
|
||||
free:
|
||||
kfree(new_map);
|
||||
return ret;
|
||||
|
Loading…
Reference in New Issue
Block a user