mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-20 10:44:23 +08:00
9ee3e06610
A particular touchpad (SIPODEV SP1064) refuses to supply the HID descriptors. This patch provides the framework for overriding these descriptors based on DMI data. It also includes the descriptors for said touchpad, which were extracted by listening to the traffic of the windows filter driver, as well as the DMI data for the laptops known to use this device. Relevant Bug: https://bugzilla.redhat.com/show_bug.cgi?id=1526312 Cc: Hans de Goede <hdegoede@redhat.com> Reported-and-tested-by: ahormann@gmx.net Reported-and-tested-by: Bruno Jesus <bruno.fl.jesus@gmail.com> Reported-and-tested-by: Dietrich <enaut.w@googlemail.com> Reported-and-tested-by: kloxdami@yahoo.com Signed-off-by: Julian Sax <jsbc@gmx.de> Reviewed-by: Benjamin Tissoires <benjamin.tissoires@redhat.com> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
21 lines
539 B
C
21 lines
539 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
|
|
#ifndef I2C_HID_H
|
|
#define I2C_HID_H
|
|
|
|
|
|
#ifdef CONFIG_DMI
|
|
struct i2c_hid_desc *i2c_hid_get_dmi_i2c_hid_desc_override(uint8_t *i2c_name);
|
|
char *i2c_hid_get_dmi_hid_report_desc_override(uint8_t *i2c_name,
|
|
unsigned int *size);
|
|
#else
|
|
static inline struct i2c_hid_desc
|
|
*i2c_hid_get_dmi_i2c_hid_desc_override(uint8_t *i2c_name)
|
|
{ return NULL; }
|
|
static inline char *i2c_hid_get_dmi_hid_report_desc_override(uint8_t *i2c_name,
|
|
unsigned int *size)
|
|
{ return NULL; }
|
|
#endif
|
|
|
|
#endif
|