diff options
author | Jovi Zhang <bookjovi@gmail.com> | 2012-08-20 14:58:26 +0800 |
---|---|---|
committer | Anton Vorontsov <anton.vorontsov@linaro.org> | 2012-08-31 15:29:42 -0700 |
commit | b4a871bce619dc5ca03cc6c78e1c467ceacb8e7e (patch) | |
tree | 097397e0002cb7c5127a1e04e401344c598a074d /fs/pstore | |
parent | 8defe59969cb8d863fe46867809316350ec0fc8f (diff) | |
download | linux-b4a871bce619dc5ca03cc6c78e1c467ceacb8e7e.tar.gz linux-b4a871bce619dc5ca03cc6c78e1c467ceacb8e7e.tar.bz2 linux-b4a871bce619dc5ca03cc6c78e1c467ceacb8e7e.zip |
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); static void __exit ramoops_exit(void) { platform_driver_unregister(&ramoops_driver); + platform_device_unregister(dummy); kfree(dummy_data); } module_exit(ramoops_exit); |