aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/input/keyboard/sh_keysc.c
diff options
context:
space:
mode:
authorMagnus Damm <magnus.damm@gmail.com>2008-03-21 20:14:46 +0900
committerPaul Mundt <lethal@linux-sh.org>2008-04-18 09:50:02 -0700
commit6dea7814e1c6a27701a63b271fc580791e066537 (patch)
tree8923a7ca7fa0d0a4a6775146368c3015a1deb705 /drivers/input/keyboard/sh_keysc.c
parent9460c0ce9b29825d279081d5078815a32c268ada (diff)
downloadkernel_samsung_smdk4412-6dea7814e1c6a27701a63b271fc580791e066537.tar.gz
kernel_samsung_smdk4412-6dea7814e1c6a27701a63b271fc580791e066537.tar.bz2
kernel_samsung_smdk4412-6dea7814e1c6a27701a63b271fc580791e066537.zip
Fix sh_keysc double free
Avoid double free situation from happening by removing input_free_device() after input_unregister_device(). Suggested by Dmitry Torokhov. Signed-off-by: Magnus Damm <damm@igel.co.jp> Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'drivers/input/keyboard/sh_keysc.c')
-rw-r--r--drivers/input/keyboard/sh_keysc.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/input/keyboard/sh_keysc.c b/drivers/input/keyboard/sh_keysc.c
index 5d0864a9e94..8486abc457e 100644
--- a/drivers/input/keyboard/sh_keysc.c
+++ b/drivers/input/keyboard/sh_keysc.c
@@ -238,7 +238,6 @@ static int __devexit sh_keysc_remove(struct platform_device *pdev)
input_unregister_device(priv->input);
free_irq(platform_get_irq(pdev, 0), pdev);
- input_free_device(priv->input);
iounmap(priv->iomem_base);
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);