lkml.org 
[lkml]   [2015]   [Sep]   [7]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH] input: keyboard: use of_property_read_bool()
Date
Use more compact of_property_read_bool() calls instead of the
of_find_property() calls.

Signed-off-by: Shawn Lin <shawn.lin@rock-chips.com>
---

drivers/input/keyboard/tegra-kbc.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/input/keyboard/tegra-kbc.c b/drivers/input/keyboard/tegra-kbc.c
index f97c73b..a08825d 100644
--- a/drivers/input/keyboard/tegra-kbc.c
+++ b/drivers/input/keyboard/tegra-kbc.c
@@ -514,10 +514,10 @@ static int tegra_kbc_parse_dt(struct tegra_kbc *kbc)
if (!of_property_read_u32(np, "nvidia,repeat-delay-ms", &prop))
kbc->repeat_cnt = prop;

- if (of_find_property(np, "nvidia,needs-ghost-filter", NULL))
+ if (of_property_read_bool(np, "nvidia,needs-ghost-filter"))
kbc->use_ghost_filter = true;

- if (of_find_property(np, "nvidia,wakeup-source", NULL))
+ if (of_property_read_bool(np, "nvidia,wakeup-source"))
kbc->wakeup = true;

if (!of_get_property(np, "nvidia,kbc-row-pins", &proplen)) {
--
2.3.7



\
 
 \ /
  Last update: 2015-09-07 09:21    [W:0.049 / U:0.040 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site