summaryrefslogtreecommitdiffstats
path: root/drivers/tty/serial/samsung.c
diff options
context:
space:
mode:
authorWei Yongjun2013-04-27 12:14:29 +0200
committerGreg Kroah-Hartman2013-05-20 20:54:55 +0200
commita82ea439655a66d587f353a3992521159f4050ee (patch)
treec2ea5a322fa1605b58b10a6bd0a49cbecd270814 /drivers/tty/serial/samsung.c
parentserial: pl011: protect attribute read from NULL platform data struct (diff)
downloadkernel-qcow2-linux-a82ea439655a66d587f353a3992521159f4050ee.tar.gz
kernel-qcow2-linux-a82ea439655a66d587f353a3992521159f4050ee.tar.xz
kernel-qcow2-linux-a82ea439655a66d587f353a3992521159f4050ee.zip
serial: samsung: add missing platform_driver_unregister() when module exit
We have registered platform driver when module init, and need unregister it when module exit. Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty/serial/samsung.c')
-rw-r--r--drivers/tty/serial/samsung.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/tty/serial/samsung.c b/drivers/tty/serial/samsung.c
index 074b9194144f..89429410a245 100644
--- a/drivers/tty/serial/samsung.c
+++ b/drivers/tty/serial/samsung.c
@@ -1803,6 +1803,7 @@ static int __init s3c24xx_serial_modinit(void)
static void __exit s3c24xx_serial_modexit(void)
{
+ platform_driver_unregister(&samsung_serial_driver);
uart_unregister_driver(&s3c24xx_uart_drv);
}