lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Fri, 10 Jul 2015 08:57:55 +0200
From:	Hans de Goede <hdegoede@...hat.com>
To:	Peter Hutterer <peter.hutterer@...-t.net>,
	linux-input@...r.kernel.org, linux-kernel@...r.kernel.org
Cc:	Dmitry Torokhov <dmitry.torokhov@...il.com>,
	Benjamin Tissoires <benjamin.tissoires@...il.com>,
	Duson Lin <dusonlin@....com.tw>
Subject: Re: [PATCH] Input - elantech: force a resolution of 31 u/mm

Hi,

On 10-07-15 02:32, Peter Hutterer wrote:
> All Elantech touchpads pre-v4 with dynamic resolution queries have a fixed
> resolution of 800dpi -> 31.49 units/mm. Set this statically, so userspace does
> not have to guess.
>
> Cc: Duson Lin <dusonlin@....com.tw>
> Signed-off-by: Peter Hutterer <peter.hutterer@...-t.net>

Ah I was planning on writing the same patch today, looks like you've
beat me to it :)

Patch looks good:

Reviewed-by: Hans de Goede <hdegoede@...hat.com>

Regards,

Hans


> ---
>   drivers/input/mouse/elantech.c | 13 ++++++++-----
>   1 file changed, 8 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/input/mouse/elantech.c b/drivers/input/mouse/elantech.c
> index ce3d400..22b9ca9 100644
> --- a/drivers/input/mouse/elantech.c
> +++ b/drivers/input/mouse/elantech.c
> @@ -1167,7 +1167,7 @@ static int elantech_set_input_params(struct psmouse *psmouse)
>   	struct input_dev *dev = psmouse->dev;
>   	struct elantech_data *etd = psmouse->private;
>   	unsigned int x_min = 0, y_min = 0, x_max = 0, y_max = 0, width = 0;
> -	unsigned int x_res = 0, y_res = 0;
> +	unsigned int x_res = 31, y_res = 31;
>
>   	if (elantech_set_range(psmouse, &x_min, &y_min, &x_max, &y_max, &width))
>   		return -1;
> @@ -1232,8 +1232,6 @@ static int elantech_set_input_params(struct psmouse *psmouse)
>   		/* For X to recognize me as touchpad. */
>   		input_set_abs_params(dev, ABS_X, x_min, x_max, 0, 0);
>   		input_set_abs_params(dev, ABS_Y, y_min, y_max, 0, 0);
> -		input_abs_set_res(dev, ABS_X, x_res);
> -		input_abs_set_res(dev, ABS_Y, y_res);
>   		/*
>   		 * range of pressure and width is the same as v2,
>   		 * report ABS_PRESSURE, ABS_TOOL_WIDTH for compatibility.
> @@ -1246,8 +1244,6 @@ static int elantech_set_input_params(struct psmouse *psmouse)
>   		input_mt_init_slots(dev, ETP_MAX_FINGERS, 0);
>   		input_set_abs_params(dev, ABS_MT_POSITION_X, x_min, x_max, 0, 0);
>   		input_set_abs_params(dev, ABS_MT_POSITION_Y, y_min, y_max, 0, 0);
> -		input_abs_set_res(dev, ABS_MT_POSITION_X, x_res);
> -		input_abs_set_res(dev, ABS_MT_POSITION_Y, y_res);
>   		input_set_abs_params(dev, ABS_MT_PRESSURE, ETP_PMIN_V2,
>   				     ETP_PMAX_V2, 0, 0);
>   		/*
> @@ -1259,6 +1255,13 @@ static int elantech_set_input_params(struct psmouse *psmouse)
>   		break;
>   	}
>
> +	input_abs_set_res(dev, ABS_X, x_res);
> +	input_abs_set_res(dev, ABS_Y, y_res);
> +	if (etd->hw_version > 1) {
> +		input_abs_set_res(dev, ABS_MT_POSITION_X, x_res);
> +		input_abs_set_res(dev, ABS_MT_POSITION_Y, y_res);
> +	}
> +
>   	etd->y_max = y_max;
>   	etd->width = width;
>
>
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ