diff options
author | Tero Saarni <tero.saarni@gmail.com> | 2009-06-11 02:27:24 -0400 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2009-06-20 01:55:17 -0400 |
commit | ec20a022aa24fc63d3ab59584cb1e5aa9a21d46c (patch) | |
tree | 671086529e62fcb541fb03422010d1eeae09b00a /drivers/input/mouse/synaptics.h | |
parent | d7ed5d883c09c5474f842dcb148515dfaef2a567 (diff) |
Input: synaptics - add support for reporting x/y resolution
Synaptics uses anisotropic coordinate system. On some wide touchpads
vertical resolution can be twice as high as horizontal which causes
unequal sensitivity on x/y directions. Add support for reading the
resolution with EVIOCGABS ioctl.
Signed-off-by: Tero Saarni <tero.saarni@gmail.com>
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'drivers/input/mouse/synaptics.h')
-rw-r--r-- | drivers/input/mouse/synaptics.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/input/mouse/synaptics.h b/drivers/input/mouse/synaptics.h index 02aa4cf7bc77..302382151752 100644 --- a/drivers/input/mouse/synaptics.h +++ b/drivers/input/mouse/synaptics.h | |||
@@ -97,6 +97,8 @@ struct synaptics_data { | |||
97 | unsigned long int capabilities; /* Capabilities */ | 97 | unsigned long int capabilities; /* Capabilities */ |
98 | unsigned long int ext_cap; /* Extended Capabilities */ | 98 | unsigned long int ext_cap; /* Extended Capabilities */ |
99 | unsigned long int identity; /* Identification */ | 99 | unsigned long int identity; /* Identification */ |
100 | int x_res; /* X resolution in units/mm */ | ||
101 | int y_res; /* Y resolution in units/mm */ | ||
100 | 102 | ||
101 | unsigned char pkt_type; /* packet type - old, new, etc */ | 103 | unsigned char pkt_type; /* packet type - old, new, etc */ |
102 | unsigned char mode; /* current mode byte */ | 104 | unsigned char mode; /* current mode byte */ |