diff options
author | Nikita Travkin <[email protected]> | 2022-01-08 23:23:49 -0800 |
---|---|---|
committer | Dmitry Torokhov <[email protected]> | 2022-01-08 23:27:06 -0800 |
commit | 9df136b555221e8eb3f4e5d3958d8fe11783abcf (patch) | |
tree | 979902e7103aa9bfb7df70ec95240c08f27c0aed | |
parent | c54be0e32e54abdf7b89d56fe9edebc2f319acee (diff) |
Input: zinitix - add compatible for bt532
Zinitix BT532 is another touch controller that seem to implement the
same interface as an already supported BT541. Add it to the driver.
Reviewed-by: Linus Walleij <[email protected]>
Signed-off-by: Nikita Travkin <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Dmitry Torokhov <[email protected]>
-rw-r--r-- | drivers/input/touchscreen/zinitix.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/input/touchscreen/zinitix.c b/drivers/input/touchscreen/zinitix.c index cf95be9e6db5..cf7ee4c765a7 100644 --- a/drivers/input/touchscreen/zinitix.c +++ b/drivers/input/touchscreen/zinitix.c @@ -571,6 +571,7 @@ static SIMPLE_DEV_PM_OPS(zinitix_pm_ops, zinitix_suspend, zinitix_resume); #ifdef CONFIG_OF static const struct of_device_id zinitix_of_match[] = { + { .compatible = "zinitix,bt532" }, { .compatible = "zinitix,bt541" }, { } }; |