aboutsummaryrefslogtreecommitdiff
path: root/drivers/input/touchscreen/mediatek/tpd_default.c
blob: 3ffa27b6a58167c688546edb2954049be8dcf8d4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "tpd.h"

/* #ifndef TPD_CUSTOM_TREMBLE_TOLERANCE */
int tpd_trembling_tolerance(int t, int p)
{
	if (t > 5 || p > 120)
		return 200;
	if (p > 90)
		return 64;
	if (p > 80)
		return 36;
	return 26;
}

/* #endif */