summaryrefslogtreecommitdiff
path: root/drivers/input/touchscreen/surface3_spi.c
diff options
context:
space:
mode:
authorLee Jones <lee.jones@linaro.org>2021-01-19 18:22:29 -0800
committerDmitry Torokhov <dmitry.torokhov@gmail.com>2021-01-19 19:03:16 -0800
commite664f0021fcaf4e4e5078e00a75db0f0bfa79256 (patch)
tree30488d09731f90598a5256ee8422c51c5603a52e /drivers/input/touchscreen/surface3_spi.c
parent33f93726b7b28f0206e2dfbfa98b54f4415a47ad (diff)
Input: surface3_spi - remove set but unused variable 'timestamp'
Fixes the following W=1 kernel build warning(s): drivers/input/touchscreen/surface3_spi.c: In function ‘surface3_spi_process_touch’: drivers/input/touchscreen/surface3_spi.c:97:6: warning: variable ‘timestamp’ set but not used [-Wunused-but-set-variable] Signed-off-by: Lee Jones <lee.jones@linaro.org> Reviewed-by: Benjamin Tissoires <benjamin.tissoires@redhat.com> Link: https://lore.kernel.org/r/20210114152323.2382283-5-lee.jones@linaro.org Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to 'drivers/input/touchscreen/surface3_spi.c')
-rw-r--r--drivers/input/touchscreen/surface3_spi.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/input/touchscreen/surface3_spi.c b/drivers/input/touchscreen/surface3_spi.c
index 731454599fce..1da23e5585a0 100644
--- a/drivers/input/touchscreen/surface3_spi.c
+++ b/drivers/input/touchscreen/surface3_spi.c
@@ -94,9 +94,7 @@ static void surface3_spi_report_touch(struct surface3_ts_data *ts_data,
static void surface3_spi_process_touch(struct surface3_ts_data *ts_data, u8 *data)
{
- u16 timestamp;
unsigned int i;
- timestamp = get_unaligned_le16(&data[15]);
for (i = 0; i < 13; i++) {
struct surface3_ts_data_finger *finger;