summaryrefslogtreecommitdiff
path: root/drivers/input
diff options
context:
space:
mode:
authorLibo Chen <clbchenlibo.chen@huawei.com>2014-01-03 23:58:32 -0800
committerDmitry Torokhov <dmitry.torokhov@gmail.com>2014-01-04 00:47:36 -0800
commita9e1d3c04a26bf9fdd9197cee61fa3a17778eb85 (patch)
tree52accc39aabae28519ed955155d67e4a7af413e0 /drivers/input
parent5cd3f8f89c38c2681a67290b6a463b12c2aede9e (diff)
Input: twl4030-vibra - add missing of_node_put
We should drop reference to twl6040_core_node device_node once we are done using it. Signed-off-by: Libo Chen <libo.chen@huawei.com> Acked-by: Peter Ujfalusi <peter.ujfalusi@ti.com> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to 'drivers/input')
-rw-r--r--drivers/input/misc/twl4030-vibra.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/input/misc/twl4030-vibra.c b/drivers/input/misc/twl4030-vibra.c
index d993775a7c39..960ef2a70910 100644
--- a/drivers/input/misc/twl4030-vibra.c
+++ b/drivers/input/misc/twl4030-vibra.c
@@ -185,8 +185,10 @@ static bool twl4030_vibra_check_coexist(struct twl4030_vibra_data *pdata,
if (pdata && pdata->coexist)
return true;
- if (of_find_node_by_name(node, "codec"))
+ if (of_find_node_by_name(node, "codec")) {
+ of_node_put(node);
return true;
+ }
return false;
}