Commit 324ae095 authored by Dmitry Tunin's avatar Dmitry Tunin Committed by Dmitry Torokhov

Input: psmouse - cleanup Focaltech code

psmouse->name "Focaltech Touchpad" is an overkill. In xinput it is too long
as "FocaltechPS/2 Focaltech Focaltech Touchpad"

In focaltech_report_state() pointer to psmouse->dev is already stored as
*dev
Signed-off-by: default avatarDmitry Tunin <hanipouspilot@gmail.com>
Signed-off-by: default avatarDmitry Torokhov <dmitry.torokhov@gmail.com>
parent da25311c
...@@ -43,7 +43,7 @@ int focaltech_detect(struct psmouse *psmouse, bool set_properties) ...@@ -43,7 +43,7 @@ int focaltech_detect(struct psmouse *psmouse, bool set_properties)
if (set_properties) { if (set_properties) {
psmouse->vendor = "FocalTech"; psmouse->vendor = "FocalTech";
psmouse->name = "FocalTech Touchpad"; psmouse->name = "Touchpad";
} }
return 0; return 0;
...@@ -146,8 +146,8 @@ static void focaltech_report_state(struct psmouse *psmouse) ...@@ -146,8 +146,8 @@ static void focaltech_report_state(struct psmouse *psmouse)
} }
input_mt_report_pointer_emulation(dev, true); input_mt_report_pointer_emulation(dev, true);
input_report_key(psmouse->dev, BTN_LEFT, state->pressed); input_report_key(dev, BTN_LEFT, state->pressed);
input_sync(psmouse->dev); input_sync(dev);
} }
static void focaltech_process_touch_packet(struct psmouse *psmouse, static void focaltech_process_touch_packet(struct psmouse *psmouse,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment