aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/rtc
diff options
context:
space:
mode:
authorAaro Koskinen <aaro.koskinen@nokia.com>2010-03-05 13:44:24 -0800
committerLinus Torvalds <torvalds@linux-foundation.org>2010-03-06 11:26:47 -0800
commit2a7a06a0cdd86d572e91657603180da5992be6d3 (patch)
treea28063efd5886e95171a7e983e8b63c6e2b2db73 /drivers/rtc
parentrtc-twl: Storage class should be before const qualifier (diff)
downloadlinux-dev-2a7a06a0cdd86d572e91657603180da5992be6d3.tar.xz
linux-dev-2a7a06a0cdd86d572e91657603180da5992be6d3.zip
rtc-core: fix memory leak
The idr should be destroyed when the module is unloaded. Found with kmemleak. Signed-off-by: Aaro Koskinen <aaro.koskinen@nokia.com> Cc: Alessandro Zummo <a.zummo@towertech.it> Cc: stable <stable@kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/rtc')
-rw-r--r--drivers/rtc/class.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/rtc/class.c b/drivers/rtc/class.c
index be5a6b73e601..40845c7e9322 100644
--- a/drivers/rtc/class.c
+++ b/drivers/rtc/class.c
@@ -226,6 +226,7 @@ static void __exit rtc_exit(void)
{
rtc_dev_exit();
class_destroy(rtc_class);
+ idr_destroy(&rtc_idr);
}
subsys_initcall(rtc_init);