dect
/
linux-2.6
Archived
13
0
Fork 0

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:
Fabio Estevam 2012-06-13 14:06:07 -03:00 committed by Linus Walleij
parent 485802a6c5
commit 14e1e9f5ca
1 changed files with 1 additions and 1 deletions

View File

@ -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;