mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] rtc/rtc-spear: free the config right after the rtc_device_unregister
@ 2012-06-03  6:24 Devendra Naga
  2012-06-20 13:32 ` devendra.aaru
       [not found] ` <e9129201-3636-49f6-9e97-156cb9823fd3@googlegroups.com>
  0 siblings, 2 replies; 5+ messages in thread
From: Devendra Naga @ 2012-06-03  6:24 UTC (permalink / raw)
  To: Alessandro Zummo, rtc-linux, linux-kernel; +Cc: Devendra Naga

the config was freed and its used again at rtc_device_unregister which leads
to a kernel panic. so, do it right after the rtc_device_unregister

Signed-off-by: Devendra Naga <devendra.aaru@gmail.com>
---
 drivers/rtc/rtc-spear.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/rtc/rtc-spear.c b/drivers/rtc/rtc-spear.c
index 1f76320..e278547 100644
--- a/drivers/rtc/rtc-spear.c
+++ b/drivers/rtc/rtc-spear.c
@@ -458,12 +458,12 @@ static int __devexit spear_rtc_remove(struct platform_device *pdev)
 	clk_disable(config->clk);
 	clk_put(config->clk);
 	iounmap(config->ioaddr);
-	kfree(config);
 	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
 	if (res)
 		release_mem_region(res->start, resource_size(res));
 	platform_set_drvdata(pdev, NULL);
 	rtc_device_unregister(config->rtc);
+	kfree(config);
 
 	return 0;
 }
-- 
1.7.9.5


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2012-06-20 16:49 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-06-03  6:24 [PATCH] rtc/rtc-spear: free the config right after the rtc_device_unregister Devendra Naga
2012-06-20 13:32 ` devendra.aaru
     [not found] ` <e9129201-3636-49f6-9e97-156cb9823fd3@googlegroups.com>
2012-06-20 14:39   ` devendra.aaru
2012-06-20 14:44     ` viresh kumar
2012-06-20 16:49       ` devendra.aaru

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome