diff options
Diffstat (limited to 'drivers/input/mouse/synaptics.h')
-rw-r--r-- | drivers/input/mouse/synaptics.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/input/mouse/synaptics.h b/drivers/input/mouse/synaptics.h index 613a3652f98f..50e20e9da442 100644 --- a/drivers/input/mouse/synaptics.h +++ b/drivers/input/mouse/synaptics.h | |||
@@ -53,6 +53,7 @@ | |||
53 | #define SYN_CAP_PRODUCT_ID(ec) (((ec) & 0xff0000) >> 16) | 53 | #define SYN_CAP_PRODUCT_ID(ec) (((ec) & 0xff0000) >> 16) |
54 | #define SYN_CAP_CLICKPAD(ex0c) ((ex0c) & 0x100100) | 54 | #define SYN_CAP_CLICKPAD(ex0c) ((ex0c) & 0x100100) |
55 | #define SYN_CAP_MAX_DIMENSIONS(ex0c) ((ex0c) & 0x020000) | 55 | #define SYN_CAP_MAX_DIMENSIONS(ex0c) ((ex0c) & 0x020000) |
56 | #define SYN_CAP_ADV_GESTURE(ex0c) ((ex0c) & 0x080000) | ||
56 | 57 | ||
57 | /* synaptics modes query bits */ | 58 | /* synaptics modes query bits */ |
58 | #define SYN_MODE_ABSOLUTE(m) ((m) & (1 << 7)) | 59 | #define SYN_MODE_ABSOLUTE(m) ((m) & (1 << 7)) |
@@ -112,6 +113,8 @@ struct synaptics_data { | |||
112 | int scroll; | 113 | int scroll; |
113 | 114 | ||
114 | struct serio *pt_port; /* Pass-through serio port */ | 115 | struct serio *pt_port; /* Pass-through serio port */ |
116 | |||
117 | struct synaptics_hw_state mt; /* current gesture packet */ | ||
115 | }; | 118 | }; |
116 | 119 | ||
117 | void synaptics_module_init(void); | 120 | void synaptics_module_init(void); |