aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/platform/x86/acer-wmi.c
diff options
context:
space:
mode:
authorAxel Lin <axel.lin@gmail.com>2010-06-03 15:18:03 +0800
committerMatthew Garrett <mjg@redhat.com>2010-08-03 09:48:49 -0400
commit97ba0af097dc3428b85dc6a1282968d7ba9510f5 (patch)
treea59d5efd4e4f4549cabd921ca102260c7d235b0c /drivers/platform/x86/acer-wmi.c
parenta5167c5b3a842b865b0ca87202b95cc8a84c9e7e (diff)
downloadkernel_samsung_smdk4412-97ba0af097dc3428b85dc6a1282968d7ba9510f5.zip
kernel_samsung_smdk4412-97ba0af097dc3428b85dc6a1282968d7ba9510f5.tar.gz
kernel_samsung_smdk4412-97ba0af097dc3428b85dc6a1282968d7ba9510f5.tar.bz2
acer-wmi/hp-wmi: use platform_device_unregister instead of platform_device_del in module_exit
platform_device_unregister will also call platform_device_put() to drop reference count. Signed-off-by: Axel Lin <axel.lin@gmail.com> Signed-off-by: Matthew Garrett <mjg@redhat.com>
Diffstat (limited to 'drivers/platform/x86/acer-wmi.c')
-rw-r--r--drivers/platform/x86/acer-wmi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/platform/x86/acer-wmi.c b/drivers/platform/x86/acer-wmi.c
index ae79624..56e6f10 100644
--- a/drivers/platform/x86/acer-wmi.c
+++ b/drivers/platform/x86/acer-wmi.c
@@ -1375,7 +1375,7 @@ static void __exit acer_wmi_exit(void)
{
remove_sysfs(acer_platform_device);
remove_debugfs();
- platform_device_del(acer_platform_device);
+ platform_device_unregister(acer_platform_device);
platform_driver_unregister(&acer_platform_driver);
printk(ACER_INFO "Acer Laptop WMI Extras unloaded\n");