diff options
author | Shreeya Patel <shreeya.patel@collabora.com> | 2024-09-23 16:15:27 +0300 |
---|---|---|
committer | Jonathan Cameron <Jonathan.Cameron@huawei.com> | 2024-10-05 14:09:15 +0300 |
commit | aa6b1dd156e4550075e4e3d8b25c35b571ce078f (patch) | |
tree | 6dd03c6642923a6c73de550bf3ef0ea4bdef3b86 /drivers | |
parent | 852559219685b38abe1e9c06ef1bc1d218edbfcd (diff) | |
download | linux-aa6b1dd156e4550075e4e3d8b25c35b571ce078f.tar.xz |
iio: light: ltrf216a: Document device name for compatible
Compatible 'ltr,ltrf216a' is used by Valve's Steamdeck device
via the ACPI + PRP0001 mechanism.
Document this info alongside the compatible.
Signed-off-by: Shreeya Patel <shreeya.patel@collabora.com>
Link: https://patch.msgid.link/20240923131527.1408691-1-shreeya.patel@collabora.com
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/iio/light/ltrf216a.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/iio/light/ltrf216a.c b/drivers/iio/light/ltrf216a.c index bc8444516689..b1dacb48d610 100644 --- a/drivers/iio/light/ltrf216a.c +++ b/drivers/iio/light/ltrf216a.c @@ -561,6 +561,7 @@ MODULE_DEVICE_TABLE(i2c, ltrf216a_id); static const struct of_device_id ltrf216a_of_match[] = { { .compatible = "liteon,ltr308", .data = <r308_chip_info }, { .compatible = "liteon,ltrf216a", .data = <rf216a_chip_info }, + /* For Valve's Steamdeck device, an ACPI platform using PRP0001 */ { .compatible = "ltr,ltrf216a", .data = <rf216a_chip_info }, {} }; |