Commit fdefa118 authored by Sachin Kamat's avatar Sachin Kamat Committed by Gustavo Padovan

Bluetooth: Use devm_kzalloc in btuart_cs.c file

devm_kzalloc() eliminates the need to free memory explicitly
thereby saving some cleanup code.
Signed-off-by: default avatarSachin Kamat <sachin.kamat@linaro.org>
Acked-by: default avatarMarcel Holtmann <marcel@holtmann.org>
Signed-off-by: default avatarGustavo Padovan <gustavo.padovan@collabora.co.uk>
parent 3a382772
...@@ -567,7 +567,7 @@ static int btuart_probe(struct pcmcia_device *link) ...@@ -567,7 +567,7 @@ static int btuart_probe(struct pcmcia_device *link)
btuart_info_t *info; btuart_info_t *info;
/* Create new info device */ /* Create new info device */
info = kzalloc(sizeof(*info), GFP_KERNEL); info = devm_kzalloc(&link->dev, sizeof(*info), GFP_KERNEL);
if (!info) if (!info)
return -ENOMEM; return -ENOMEM;
...@@ -583,10 +583,7 @@ static int btuart_probe(struct pcmcia_device *link) ...@@ -583,10 +583,7 @@ static int btuart_probe(struct pcmcia_device *link)
static void btuart_detach(struct pcmcia_device *link) static void btuart_detach(struct pcmcia_device *link)
{ {
btuart_info_t *info = link->priv;
btuart_release(link); btuart_release(link);
kfree(info);
} }
static int btuart_check_config(struct pcmcia_device *p_dev, void *priv_data) static int btuart_check_config(struct pcmcia_device *p_dev, void *priv_data)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment