Input: ucb1400_ts - fix suspend and resume handling

Instead of stopping the touchscreen we were starting it in suspend, and
disabling it in resume.

Fixes: c899afedf168 ("Input: ucb1400_ts - convert to threaded IRQ")
Reported-by: Anton Volkov <avolkov@ispras.ru>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>

+2 -2
+2 -2
drivers/input/touchscreen/ucb1400_ts.c
··· 414 414 mutex_lock(&idev->mutex); 415 415 416 416 if (idev->users) 417 - ucb1400_ts_start(ucb); 417 + ucb1400_ts_stop(ucb); 418 418 419 419 mutex_unlock(&idev->mutex); 420 420 return 0; ··· 428 428 mutex_lock(&idev->mutex); 429 429 430 430 if (idev->users) 431 - ucb1400_ts_stop(ucb); 431 + ucb1400_ts_start(ucb); 432 432 433 433 mutex_unlock(&idev->mutex); 434 434 return 0;