Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5161870f authored by Dmitry Torokhov's avatar Dmitry Torokhov
Browse files

Input: fix sparse warning in multitouch code



This fixes the following sparse warning:
drivers/input/input-mt.c:193:18: warning: Using plain integer as NULL pointer

Signed-off-by: default avatarDmitry Torokhov <dmitry.torokhov@gmail.com>
parent a4d6983c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -190,7 +190,7 @@ void input_mt_report_pointer_emulation(struct input_dev *dev, bool use_count)
	if (!mt)
		return;

	oldest = 0;
	oldest = NULL;
	oldid = mt->trkid;
	count = 0;