diff options
author | Daniel Kurtz <djkurtz@chromium.org> | 2011-07-07 01:27:47 -0400 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2011-07-07 02:01:00 -0400 |
commit | 8be3c650f54c259694e82282e54b12c14304487e (patch) | |
tree | 7e332ca45edea3c0d26269285d7c7959559bc187 /drivers/input | |
parent | 84460014505685ab234fa8e1a45dffd32f3a46a7 (diff) |
Input: synaptics - set resolution for MT_POSITION_X/Y axes
Set resolution for MT_POSITION_X and MT_POSITION_Y to match ABS_X and
ABS_Y, respectively.
Signed-off-by: Daniel Kurtz <djkurtz@chromium.org>
Acked-by: Chase Douglas <chase.douglas@canonical.com>
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'drivers/input')
-rw-r--r-- | drivers/input/mouse/synaptics.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/input/mouse/synaptics.c b/drivers/input/mouse/synaptics.c index e06e045bf907..477d1eaea8b5 100644 --- a/drivers/input/mouse/synaptics.c +++ b/drivers/input/mouse/synaptics.c | |||
@@ -701,6 +701,9 @@ static void set_input_params(struct input_dev *dev, struct synaptics_data *priv) | |||
701 | priv->x_max ?: XMAX_NOMINAL, 0, 0); | 701 | priv->x_max ?: XMAX_NOMINAL, 0, 0); |
702 | input_set_abs_params(dev, ABS_MT_POSITION_Y, YMIN_NOMINAL, | 702 | input_set_abs_params(dev, ABS_MT_POSITION_Y, YMIN_NOMINAL, |
703 | priv->y_max ?: YMAX_NOMINAL, 0, 0); | 703 | priv->y_max ?: YMAX_NOMINAL, 0, 0); |
704 | |||
705 | input_abs_set_res(dev, ABS_MT_POSITION_X, priv->x_res); | ||
706 | input_abs_set_res(dev, ABS_MT_POSITION_Y, priv->y_res); | ||
704 | } | 707 | } |
705 | 708 | ||
706 | if (SYN_CAP_PALMDETECT(priv->capabilities)) | 709 | if (SYN_CAP_PALMDETECT(priv->capabilities)) |