iio: proximity: rfd77402: Add OF device ID for enumeration via DT

Add an OF device ID table so the driver can bind automatically when
the RFD77402 sensor is described in Device Tree. This enables proper
enumeration via its compatible string and allows instantiation on
DT-based platforms.

Signed-off-by: Shrikant Raskar <raskar.shree97@gmail.com>
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
This commit is contained in:
Shrikant Raskar 2026-01-01 21:47:39 +05:30 committed by Jonathan Cameron
parent e4d0e63e24
commit a750088883

View File

@ -313,10 +313,17 @@ static const struct i2c_device_id rfd77402_id[] = {
};
MODULE_DEVICE_TABLE(i2c, rfd77402_id);
static const struct of_device_id rfd77402_of_match[] = {
{ .compatible = "rfdigital,rfd77402" },
{ }
};
MODULE_DEVICE_TABLE(of, rfd77402_of_match);
static struct i2c_driver rfd77402_driver = {
.driver = {
.name = RFD77402_DRV_NAME,
.pm = pm_sleep_ptr(&rfd77402_pm_ops),
.of_match_table = rfd77402_of_match,
},
.probe = rfd77402_probe,
.id_table = rfd77402_id,