summaryrefslogtreecommitdiffstats
path: root/drivers/staging/greybus/raw.c
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@google.com>2015-07-08 10:44:09 -0700
committerGreg Kroah-Hartman <gregkh@google.com>2015-07-08 11:53:43 -0700
commit5c1ac6945526c76258869c8c04632ab5ae61bdab (patch)
treeee38c1643a729fba6d4e314526944b38d31f9f53 /drivers/staging/greybus/raw.c
parent6ceb8fdeaec665642de944ee47d11440e72a5e26 (diff)
downloadlinux-5c1ac6945526c76258869c8c04632ab5ae61bdab.tar.bz2
greybus: properly cleanup ida and idr structures when shutting down
idr and ida structures have internal memory allocated that needs to be freed when modules are removed. So call the proper idr_destroy() or ida_destroy() functions on the module exit path to free the memory. Signed-off-by: Greg Kroah-Hartman <gregkh@google.com> Reviewed-by: Alex Elder <elder@linaro.org>
Diffstat (limited to 'drivers/staging/greybus/raw.c')
-rw-r--r--drivers/staging/greybus/raw.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/staging/greybus/raw.c b/drivers/staging/greybus/raw.c
index d93d052a8a7e..3be96db2588b 100644
--- a/drivers/staging/greybus/raw.c
+++ b/drivers/staging/greybus/raw.c
@@ -364,6 +364,7 @@ static void __exit raw_exit(void)
gb_protocol_deregister(&raw_protocol);
unregister_chrdev_region(MKDEV(raw_major, 0), NUM_MINORS);
class_destroy(raw_class);
+ ida_destroy(&minors);
}
module_exit(raw_exit);