diff options
author | Pali Rohár <pali.rohar@gmail.com> | 2017-03-07 20:43:35 +0300 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2017-03-07 20:49:30 +0300 |
commit | a3cbfd56ff909393e2d59236d94205ae17dfc5d5 (patch) | |
tree | 34c2a08d294ae87c11f0567c6e13caad38c694f1 /drivers/input/mouse/alps.h | |
parent | c9815232c3cca58bb2b664f37b681841981ed4a9 (diff) | |
download | linux-a3cbfd56ff909393e2d59236d94205ae17dfc5d5.tar.xz |
Input: alps - cleanup alps_model_data
Sort all devices in alps_model_data by signature and remove
command_mode_resp which is not used anymore.
Signed-off-by: Pali Rohár <pali.rohar@gmail.com>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to 'drivers/input/mouse/alps.h')
-rw-r--r-- | drivers/input/mouse/alps.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/input/mouse/alps.h b/drivers/input/mouse/alps.h index 54f9f4401a77..dea31638c91f 100644 --- a/drivers/input/mouse/alps.h +++ b/drivers/input/mouse/alps.h @@ -163,10 +163,6 @@ struct alps_protocol_info { /** * struct alps_model_info - touchpad ID table * @signature: E7 response string to match. - * @command_mode_resp: For V3/V4 touchpads, the final byte of the EC response - * (aka command mode response) identifies the firmware minor version. This - * can be used to distinguish different hardware models which are not - * uniquely identifiable through their E7 responses. * @protocol_info: information about protocol used by the device. * * Many (but not all) ALPS touchpads can be identified by looking at the @@ -175,7 +171,6 @@ struct alps_protocol_info { */ struct alps_model_info { u8 signature[3]; - u8 command_mode_resp; struct alps_protocol_info protocol_info; }; |