Variable count is just being incremented and it's never used
anywhere else. The variable and the increment are redundant so
remove it.
Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
 {
        struct input_mt *mt = drvdat->input->mt;
        struct input_mt_slot *oldest;
-       int oldid, count, i;
+       int oldid, i;
 
        if (drvdat->tp->contact_size < 5)
                return;
 
        oldest = NULL;
        oldid = mt->trkid;
-       count = 0;
 
        for (i = 0; i < mt->num_slots; ++i) {
                struct input_mt_slot *ps = &mt->slots[i];
                        oldest = ps;
                        oldid = id;
                }
-               count++;
        }
 
        if (oldest) {