diff options
Diffstat (limited to 'drivers/input/tablet/wacom_wac.h')
-rw-r--r-- | drivers/input/tablet/wacom_wac.h | 5 |
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 | ||
74 | struct wacom_shared { | ||
75 | bool stylus_in_proximity; | ||
76 | }; | ||
77 | |||
74 | struct wacom_wac { | 78 | struct 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 |