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

Commit 23c483d2 authored by Mark Brown's avatar Mark Brown Committed by Dmitry Torokhov
Browse files

Input: wm831x-ts - default pressure measurements on



tslib expects pressure measurements so enable them by default for better
compatibility.

Signed-off-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: default avatarDmitry Torokhov <dtor@mail.ru>
parent 47340bd9
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -225,7 +225,10 @@ static __devinit int wm831x_ts_probe(struct platform_device *pdev)
	else
		wm831x_ts->pd_irq = platform_get_irq_byname(pdev, "TCHPD");

	wm831x_ts->pressure = pdata && pdata->pressure;
	if (pdata)
		wm831x_ts->pressure = pdata->pressure;
	else
		wm831x_ts->pressure = true;

	/* Five wire touchscreens can't report pressure */
	if (pdata && pdata->fivewire) {