aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/input
diff options
context:
space:
mode:
authorYueHaibing <yuehaibing@huawei.com>2020-09-16 10:26:09 -0700
committerDmitry Torokhov <dmitry.torokhov@gmail.com>2020-09-16 10:38:58 -0700
commitd04afe14b23651e7a8bc89727a759e982a8458e4 (patch)
tree7a117f9b8d7e66e613459a8dc668508d6b51fe2b /drivers/input
parentInput: imx6ul_tsc - unify open/close and PM paths (diff)
downloadlinux-dev-d04afe14b23651e7a8bc89727a759e982a8458e4.tar.xz
linux-dev-d04afe14b23651e7a8bc89727a759e982a8458e4.zip
Input: stmfts - fix a & vs && typo
In stmfts_sysfs_hover_enable_write(), we should check value and sdata->hover_enabled is all true. Fixes: 78bcac7b2ae1 ("Input: add support for the STMicroelectronics FingerTip touchscreen") Signed-off-by: YueHaibing <yuehaibing@huawei.com> Link: https://lore.kernel.org/r/20200916141941.16684-1-yuehaibing@huawei.com Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to 'drivers/input')
-rw-r--r--drivers/input/touchscreen/stmfts.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/touchscreen/stmfts.c b/drivers/input/touchscreen/stmfts.c
index df946869d4cd..9a64e1dbc04a 100644
--- a/drivers/input/touchscreen/stmfts.c
+++ b/drivers/input/touchscreen/stmfts.c
@@ -479,7 +479,7 @@ static ssize_t stmfts_sysfs_hover_enable_write(struct device *dev,
mutex_lock(&sdata->mutex);
- if (value & sdata->hover_enabled)
+ if (value && sdata->hover_enabled)
goto out;
if (sdata->running)