aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/input/mouse/alps.h
diff options
context:
space:
mode:
authorPali Rohár <pali.rohar@gmail.com>2017-03-07 09:43:35 -0800
committerDmitry Torokhov <dmitry.torokhov@gmail.com>2017-03-07 09:49:30 -0800
commita3cbfd56ff909393e2d59236d94205ae17dfc5d5 (patch)
tree34c2a08d294ae87c11f0567c6e13caad38c694f1 /drivers/input/mouse/alps.h
parentInput: alps - warn about unsupported ALPS V9 touchpad (diff)
downloadlinux-dev-a3cbfd56ff909393e2d59236d94205ae17dfc5d5.tar.xz
linux-dev-a3cbfd56ff909393e2d59236d94205ae17dfc5d5.zip
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.h5
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;
};