Message ID | 20190606161312.47143-1-jeffrey.l.hugo@gmail.com (mailing list archive) |
---|---|
State | Superseded |
Headers | show |
Series | Basic DT support for Lenovo Miix 630 | expand |
diff --git a/drivers/input/mouse/elan_i2c_core.c b/drivers/input/mouse/elan_i2c_core.c index 65cd325eabc3..4cb49925a8b4 100644 --- a/drivers/input/mouse/elan_i2c_core.c +++ b/drivers/input/mouse/elan_i2c_core.c @@ -1374,6 +1374,10 @@ static const struct i2c_device_id elan_id[] = { }; MODULE_DEVICE_TABLE(i2c, elan_id); +/* + * when these whitelists get updated, the corresponding blacklist in hid-quirks + * needs to be updated to match. + */ #ifdef CONFIG_ACPI static const struct acpi_device_id elan_acpi_id[] = { { "ELAN0000", 0 },
Elan_i2c and hid-quirks work in conjunction to decide which devices each driver will handle. Document this link in elan_i2c as a reminder that updates to elan_i2c need to be mirrored to hid-quirks. Signed-off-by: Jeffrey Hugo <jeffrey.l.hugo@gmail.com> --- drivers/input/mouse/elan_i2c_core.c | 4 ++++ 1 file changed, 4 insertions(+)