aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/input/tablet/wacom_wac.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/input/tablet/wacom_wac.h')
-rw-r--r--drivers/input/tablet/wacom_wac.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/input/tablet/wacom_wac.h b/drivers/input/tablet/wacom_wac.h
index b50cf04e61a8..4b55fc7ad8ae 100644
--- a/drivers/input/tablet/wacom_wac.h
+++ b/drivers/input/tablet/wacom_wac.h
@@ -71,6 +71,10 @@ struct wacom_features {
71 unsigned char unitExpo; 71 unsigned char unitExpo;
72}; 72};
73 73
74struct wacom_shared {
75 bool stylus_in_proximity;
76};
77
74struct wacom_wac { 78struct wacom_wac {
75 char name[64]; 79 char name[64];
76 unsigned char *data; 80 unsigned char *data;
@@ -78,6 +82,7 @@ struct wacom_wac {
78 int id[2]; 82 int id[2];
79 __u32 serial[2]; 83 __u32 serial[2];
80 struct wacom_features features; 84 struct wacom_features features;
85 struct wacom_shared *shared;
81}; 86};
82 87
83#endif 88#endif