[PATCH] touchscreen: tnetv107x: fix input_device leak

From: Vasiliy Kulikov
Date: Sun Sep 26 2010 - 04:59:57 EST


tsc_probe() calls input_free_device() on error, but tsc_remove()
doesn't.
---
drivers/input/touchscreen/tnetv107x-ts.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/drivers/input/touchscreen/tnetv107x-ts.c b/drivers/input/touchscreen/tnetv107x-ts.c
index cf1dba2..82d9a01 100644
--- a/drivers/input/touchscreen/tnetv107x-ts.c
+++ b/drivers/input/touchscreen/tnetv107x-ts.c
@@ -361,6 +361,7 @@ static int __devexit tsc_remove(struct platform_device *pdev)

input_unregister_device(ts->input_dev);
free_irq(ts->tsc_irq, ts);
+ input_free_device(ts->input_dev);
clk_put(ts->clk);
iounmap(ts->regs);
release_mem_region(ts->res->start, resource_size(ts->res));
--
1.7.0.4

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/