diff options
author | Aaro Koskinen <[email protected]> | 2010-03-05 13:44:24 -0800 |
---|---|---|
committer | Linus Torvalds <[email protected]> | 2010-03-06 11:26:47 -0800 |
commit | 2a7a06a0cdd86d572e91657603180da5992be6d3 (patch) | |
tree | a28063efd5886e95171a7e983e8b63c6e2b2db73 | |
parent | 2e84067b6e557b0b85cdbceaf9a9189fc2c26536 (diff) |
rtc-core: fix memory leak
The idr should be destroyed when the module is unloaded. Found with
kmemleak.
Signed-off-by: Aaro Koskinen <[email protected]>
Cc: Alessandro Zummo <[email protected]>
Cc: stable <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r-- | drivers/rtc/class.c | 1 |
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); |