diff options
author | Jovi Zhang <bookjovi@gmail.com> | 2012-08-20 02:58:26 -0400 |
---|---|---|
committer | Anton Vorontsov <anton.vorontsov@linaro.org> | 2012-08-31 18:29:42 -0400 |
commit | b4a871bce619dc5ca03cc6c78e1c467ceacb8e7e (patch) | |
tree | 097397e0002cb7c5127a1e04e401344c598a074d /fs/pstore | |
parent | 8defe59969cb8d863fe46867809316350ec0fc8f (diff) |
pstore/ram: Add missing platform_device_unregister
We need to unregister platform device when module exit, this commit fixes
the issue.
Signed-off-by: Jovi Zhang <bookjovi@gmail.com>
Acked-by: Kees Cook <keescook@chromium.org>
Signed-off-by: Anton Vorontsov <anton.vorontsov@linaro.org>
Diffstat (limited to 'fs/pstore')
-rw-r--r-- | fs/pstore/ram.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/pstore/ram.c b/fs/pstore/ram.c index 91016049e551..1a4f6da58eab 100644 --- a/fs/pstore/ram.c +++ b/fs/pstore/ram.c | |||
@@ -538,6 +538,7 @@ postcore_initcall(ramoops_init); | |||
538 | static void __exit ramoops_exit(void) | 538 | static void __exit ramoops_exit(void) |
539 | { | 539 | { |
540 | platform_driver_unregister(&ramoops_driver); | 540 | platform_driver_unregister(&ramoops_driver); |
541 | platform_device_unregister(dummy); | ||
541 | kfree(dummy_data); | 542 | kfree(dummy_data); |
542 | } | 543 | } |
543 | module_exit(ramoops_exit); | 544 | module_exit(ramoops_exit); |