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:
19a1ac5
)
rtc/rtc-da9052: remove unneed devm_kfree call
author
Devendra Naga
<
[email protected]
>
Mon, 30 Jul 2012 21:41:54 +0000
(14:41 -0700)
committer
Linus Torvalds
<
[email protected]
>
Tue, 31 Jul 2012 00:25:18 +0000
(17:25 -0700)
Freeing will trigger when driver unloads, so using devm_kfree() is not
needed.
Signed-off-by: Devendra Naga <
[email protected]
>
Cc: Alessandro Zummo <
[email protected]
>
Cc: Ashish Jangam <
[email protected]
>
Cc: David Dajun Chen <
[email protected]
>
Signed-off-by: Andrew Morton <
[email protected]
>
Signed-off-by: Linus Torvalds <
[email protected]
>
drivers/rtc/rtc-da9052.c
patch
|
blob
|
history
diff --git
a/drivers/rtc/rtc-da9052.c
b/drivers/rtc/rtc-da9052.c
index da6ab5291a414c70b8ed29b57243f8a9192d14c3..78070255bd3f834d7aa8efa937e5ca552c07f4d1 100644
(file)
--- a/
drivers/rtc/rtc-da9052.c
+++ b/
drivers/rtc/rtc-da9052.c
@@
-245,7
+245,7
@@
static int __devinit da9052_rtc_probe(struct platform_device *pdev)
"ALM", rtc);
if (ret != 0) {
rtc_err(rtc->da9052, "irq registration failed: %d\n", ret);
-
goto err_mem
;
+
return ret
;
}
rtc->rtc = rtc_device_register(pdev->name, &pdev->dev,
@@
-259,8
+259,6
@@
static int __devinit da9052_rtc_probe(struct platform_device *pdev)
err_free_irq:
free_irq(rtc->irq, rtc);
-err_mem:
- devm_kfree(&pdev->dev, rtc);
return ret;
}
@@
-271,7
+269,6
@@
static int __devexit da9052_rtc_remove(struct platform_device *pdev)
rtc_device_unregister(rtc->rtc);
free_irq(rtc->irq, rtc);
platform_set_drvdata(pdev, NULL);
- devm_kfree(&pdev->dev, rtc);
return 0;
}