summaryrefslogtreecommitdiff
path: root/src/hwdata.h
diff options
context:
space:
mode:
authorHenrik Rydberg <rydberg@euromail.se>2010-03-21 14:57:42 +0100
committerHenrik Rydberg <rydberg@euromail.se>2010-03-21 14:57:42 +0100
commitd5b3178ca184dee4b3116e5b569745d43dbe37ef (patch)
treebc0cef4cb7d59398074675e28089c6a9a775e6fb /src/hwdata.h
parentcc7c4c6ebfbd35ed16e9da8d5c70431fce9f31cd (diff)
Add support for the ABS_MT_PRESSURE event
The kernel MT api was recently updated to include the ABS_MT_PRESSURE event. This patch adds it to the hardware structure. Signed-off-by: Henrik Rydberg <rydberg@euromail.se>
Diffstat (limited to 'src/hwdata.h')
-rw-r--r--src/hwdata.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hwdata.h b/src/hwdata.h
index 9b46073..38ffc6b 100644
--- a/src/hwdata.h
+++ b/src/hwdata.h
@@ -37,7 +37,7 @@
37struct FingerData { 37struct FingerData {
38 int touch_major, touch_minor; 38 int touch_major, touch_minor;
39 int width_major, width_minor; 39 int width_major, width_minor;
40 int orientation; 40 int orientation, pressure;
41 int position_x, position_y; 41 int position_x, position_y;
42}; 42};
43 43