diff options
author | Libo Chen <clbchenlibo.chen@huawei.com> | 2014-01-04 08:58:32 +0100 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2014-01-04 09:47:36 +0100 |
commit | a9e1d3c04a26bf9fdd9197cee61fa3a17778eb85 (patch) | |
tree | 52accc39aabae28519ed955155d67e4a7af413e0 /drivers/input/misc | |
parent | Input: i8042 - cleanup SERIO_I8042 dependencies (diff) | |
download | linux-a9e1d3c04a26bf9fdd9197cee61fa3a17778eb85.tar.xz linux-a9e1d3c04a26bf9fdd9197cee61fa3a17778eb85.zip |
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/misc')
-rw-r--r-- | drivers/input/misc/twl4030-vibra.c | 4 |
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; } |