diff options
author | Wei Yongjun <yongjun_wei@trendmicro.com.cn> | 2013-11-27 11:34:58 +0800 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2013-11-26 20:18:07 -0800 |
commit | 2b8454a75b90d7cd1ac325a0baba77244733354f (patch) | |
tree | de50a783ad8d640eb69c09505914f18b9eb1b712 /drivers/platform | |
parent | 6d3c1afe7367447c8f7d2fec7a132f723834efd1 (diff) | |
download | op-kernel-dev-2b8454a75b90d7cd1ac325a0baba77244733354f.zip op-kernel-dev-2b8454a75b90d7cd1ac325a0baba77244733354f.tar.gz |
platform/chrome: unregister platform driver/device when module exit
We have registered platform driver and device when module
init, and need unregister them when module exit.
Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
Signed-off-by: Olof Johansson <olof@lixom.net>
Diffstat (limited to 'drivers/platform')
-rw-r--r-- | drivers/platform/chrome/chromeos_laptop.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/platform/chrome/chromeos_laptop.c b/drivers/platform/chrome/chromeos_laptop.c index 446ef0f9..7f3aad0 100644 --- a/drivers/platform/chrome/chromeos_laptop.c +++ b/drivers/platform/chrome/chromeos_laptop.c @@ -511,6 +511,9 @@ static void __exit chromeos_laptop_exit(void) i2c_unregister_device(tp); if (ts) i2c_unregister_device(ts); + + platform_device_unregister(cros_platform_device); + platform_driver_unregister(&cros_platform_driver); } module_init(chromeos_laptop_init); |