Re: [PATCH v6 1/3] input: trackpoint - Enable doubletap by default on capable devices

From: Dmitry Torokhov

Date: Sun Feb 01 2026 - 03:10:18 EST


Hi Vishnu,

On Tue, Jan 27, 2026 at 07:39:05PM +0900, Vishnu Sankar wrote:
> @@ -470,6 +509,14 @@ int trackpoint_detect(struct psmouse *psmouse, bool set_properties)
> psmouse->vendor, firmware_id,
> (button_info & 0xf0) >> 4, button_info & 0x0f);
>
> + /* Enable doubletap by default on capable devices */

This is obvious from the code, please drop the comment.


> + if (trackpoint_is_dt_capable(ps2dev->serio->firmware_id)) {
> + if (trackpoint_write(ps2dev, TP_DOUBLETAP, TP_DOUBLETAP_ENABLE))
> + psmouse_warn(psmouse, "Failed to enable doubletap: %d\n", error);
> + else
> + psmouse_info(psmouse, "Doubletap enabled by default!\n");

Drop psmouse_info(), no need to make the driver too noisy.

Otherwise:


Acked-by: Dmitry Torokhov <dmitry.torokhov@xxxxxxxxx>

--
Dmitry