projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2d65943
)
drivers/rtc/rtc-wm831x.c: convert to devm_kzalloc()
author
Mark Brown
<
[email protected]
>
Tue, 10 Jan 2012 23:10:44 +0000
(15:10 -0800)
committer
Linus Torvalds
<
[email protected]
>
Wed, 11 Jan 2012 00:30:52 +0000
(16:30 -0800)
Marginally less code and eliminate the possibility of memory leaks.
Signed-off-by: Mark Brown <
[email protected]
>
Acked-by: Jean-Christophe PLAGNIOL-VILLARD <
[email protected]
>
Cc: Alessandro Zummo <
[email protected]
>
Signed-off-by: Andrew Morton <
[email protected]
>
Signed-off-by: Linus Torvalds <
[email protected]
>
drivers/rtc/rtc-wm831x.c
patch
|
blob
|
history
diff --git
a/drivers/rtc/rtc-wm831x.c
b/drivers/rtc/rtc-wm831x.c
index dabbd456dfe11b56ab5c1c0dfe0045471e7dc0b9..657c6f67b2878469422185043741afd655f138b1 100644
(file)
--- a/
drivers/rtc/rtc-wm831x.c
+++ b/
drivers/rtc/rtc-wm831x.c
@@
-399,7
+399,7
@@
static int wm831x_rtc_probe(struct platform_device *pdev)
int alm_irq = platform_get_irq_byname(pdev, "ALM");
int ret = 0;
- wm831x_rtc =
kzalloc(
sizeof(*wm831x_rtc), GFP_KERNEL);
+ wm831x_rtc =
devm_kzalloc(&pdev->dev,
sizeof(*wm831x_rtc), GFP_KERNEL);
if (wm831x_rtc == NULL)
return -ENOMEM;
@@
-434,7
+434,6
@@
static int wm831x_rtc_probe(struct platform_device *pdev)
return 0;
err:
- kfree(wm831x_rtc);
return ret;
}
@@
-445,7
+444,6
@@
static int __devexit wm831x_rtc_remove(struct platform_device *pdev)
free_irq(alm_irq, wm831x_rtc);
rtc_device_unregister(wm831x_rtc->rtc);
- kfree(wm831x_rtc);
return 0;
}