diff options
Diffstat (limited to 'drivers/hid/hid-roccat-kone.h')
-rw-r--r-- | drivers/hid/hid-roccat-kone.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/hid/hid-roccat-kone.h b/drivers/hid/hid-roccat-kone.h index b413b10a7f8a..003e6f81c195 100644 --- a/drivers/hid/hid-roccat-kone.h +++ b/drivers/hid/hid-roccat-kone.h | |||
@@ -189,6 +189,12 @@ enum kone_commands { | |||
189 | kone_command_firmware = 0xe5a | 189 | kone_command_firmware = 0xe5a |
190 | }; | 190 | }; |
191 | 191 | ||
192 | struct kone_roccat_report { | ||
193 | uint8_t event; | ||
194 | uint8_t value; /* holds dpi or profile value */ | ||
195 | uint8_t key; /* macro key on overlong macro execution */ | ||
196 | }; | ||
197 | |||
192 | #pragma pack(pop) | 198 | #pragma pack(pop) |
193 | 199 | ||
194 | struct kone_device { | 200 | struct kone_device { |
@@ -219,6 +225,9 @@ struct kone_device { | |||
219 | * so it's read only once | 225 | * so it's read only once |
220 | */ | 226 | */ |
221 | int firmware_version; | 227 | int firmware_version; |
228 | |||
229 | int roccat_claimed; | ||
230 | int chrdev_minor; | ||
222 | }; | 231 | }; |
223 | 232 | ||
224 | #endif | 233 | #endif |