Commit c4cf2d8d authored by Hans de Goede's avatar Hans de Goede Committed by Jiri Kosina

HID: elan: Remove unused max_area_x and max_area_y vatiables

max_area_x and max_area_y are initialized but never used anywhere,
drop them.
Signed-off-by: default avatarHans de Goede <hdegoede@redhat.com>
Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
parent 092150a2
...@@ -31,8 +31,6 @@ struct elan_touchpad_settings { ...@@ -31,8 +31,6 @@ struct elan_touchpad_settings {
u8 max_fingers; u8 max_fingers;
u16 max_x; u16 max_x;
u16 max_y; u16 max_y;
u8 max_area_x;
u8 max_area_y;
u8 max_w; u8 max_w;
int usb_bInterfaceNumber; int usb_bInterfaceNumber;
}; };
...@@ -390,8 +388,6 @@ static const struct elan_touchpad_settings hp_x2_10_touchpad_data = { ...@@ -390,8 +388,6 @@ static const struct elan_touchpad_settings hp_x2_10_touchpad_data = {
.max_fingers = 5, .max_fingers = 5,
.max_x = 2930, .max_x = 2930,
.max_y = 1250, .max_y = 1250,
.max_area_x = 15,
.max_area_y = 15,
.max_w = 255, .max_w = 255,
.usb_bInterfaceNumber = 1, .usb_bInterfaceNumber = 1,
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment