diff options
author | Dominik Sliwa <dominik.sliwa@toradex.com> | 2017-10-03 17:22:39 +0200 |
---|---|---|
committer | Marcel Ziswiler <marcel.ziswiler@toradex.com> | 2017-10-06 16:59:08 +0200 |
commit | e9636255d1a151de8903e952f64ed779e832f613 (patch) | |
tree | c466a17cdc371e9045d47de8d86c4c227b8b4f6e /drivers/input/touchscreen/apalis-tk1-k20_ts.c | |
parent | 795eccdb989221b0d9ff32a34cd0f7127db89860 (diff) |
mfd: apalis-tk1-k20: clean-up and fix support for 0.10 k20 fwApalis-TK1_LXDE-Image_2.7b4-20171007
Signed-off-by: Dominik Sliwa <dominik.sliwa@toradex.com>
Acked-by: Marcel Ziswiler <marcel.ziswiler@toradex.com>
Diffstat (limited to 'drivers/input/touchscreen/apalis-tk1-k20_ts.c')
-rw-r--r-- | drivers/input/touchscreen/apalis-tk1-k20_ts.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/drivers/input/touchscreen/apalis-tk1-k20_ts.c b/drivers/input/touchscreen/apalis-tk1-k20_ts.c index 38e4a3003c8d..55aaa6f07fb9 100644 --- a/drivers/input/touchscreen/apalis-tk1-k20_ts.c +++ b/drivers/input/touchscreen/apalis-tk1-k20_ts.c @@ -1,5 +1,5 @@ /* - * Copyright 2016 Toradex AG + * Copyright 2016-2017 Toradex AG * Dominik Sliwa <dominik.sliwa@toradex.com> * * Based on driver for the Freescale Semiconductor MC13783 touchscreen by: @@ -10,6 +10,7 @@ * under the terms of the GNU General Public License version 2 as published by * the Free Software Foundation. */ + #include <linux/platform_device.h> #include <linux/mfd/apalis-tk1-k20.h> #include <linux/kernel.h> @@ -59,7 +60,7 @@ static void apalis_tk1_k20_ts_report_sample(struct apalis_tk1_k20_ts *priv) y = (yp + ym) / 2; press = (abs(yp - ym) + abs(xp - xm)) / 2; - if ((yp != 0) && ( xp != 0 )) { + if ((yp != 0) && (xp != 0)) { btn = 1; input_report_abs(idev, ABS_X, x); input_report_abs(idev, ABS_Y, y); @@ -226,7 +227,8 @@ static struct platform_driver apalis_tk1_k20_ts_driver = { }, }; -module_platform_driver_probe(apalis_tk1_k20_ts_driver, &apalis_tk1_k20_ts_probe); +module_platform_driver_probe(apalis_tk1_k20_ts_driver, + &apalis_tk1_k20_ts_probe); MODULE_DESCRIPTION("K20 touchscreen controller on Apalis TK1"); MODULE_AUTHOR("Dominik Sliwa <dominik.sliwa@toradex.com>"); |