* [PATCH] Input: tegra-kbc - correct call to input_free_device
@ 2011-07-20 7:52 Axel Lin
0 siblings, 0 replies; only message in thread
From: Axel Lin @ 2011-07-20 7:52 UTC (permalink / raw)
To: linux-kernel; +Cc: Dmitry Torokhov, Rakesh Iyer, linux-input
This error handling code can be reached before kbc->idev is
initialized, so it is safer to always use the original name,
input_dev.
Signed-off-by: Axel Lin <axel.lin@gmail.com>
---
drivers/input/keyboard/tegra-kbc.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/input/keyboard/tegra-kbc.c b/drivers/input/keyboard/tegra-kbc.c
index 2b3b73e..8e40f2b 100644
--- a/drivers/input/keyboard/tegra-kbc.c
+++ b/drivers/input/keyboard/tegra-kbc.c
@@ -701,7 +701,7 @@ err_iounmap:
err_free_mem_region:
release_mem_region(res->start, resource_size(res));
err_free_mem:
- input_free_device(kbc->idev);
+ input_free_device(input_dev);
kfree(kbc);
return err;
--
1.7.4.1
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2011-07-20 7:52 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-20 7:52 [PATCH] Input: tegra-kbc - correct call to input_free_device Axel Lin
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).