Skip to content

Commit

Permalink
iio: light: vcnl4035 add i2c_device_id
Browse files Browse the repository at this point in the history
Add i2c_device_id table for the vcnl4035 driver,
enabling device instantiation using i2c_new_client_device()
or from userspace in cases where device-tree based description
is not possible now, like device(s) on a gbphy i2c adapter
created by greybus.

Signed-off-by: Vaishnav M A <vaishnav@beagleboard.org>
Link: https://lore.kernel.org/r/20201018195357.GA814864@ubuntu
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
  • Loading branch information
Vaishnav M A authored and Jonathan Cameron committed Nov 1, 2020
1 parent 8bb97ba commit 41a4b8f
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions drivers/iio/light/vcnl4035.c
Original file line number Diff line number Diff line change
Expand Up @@ -652,6 +652,12 @@ static const struct dev_pm_ops vcnl4035_pm_ops = {
vcnl4035_runtime_resume, NULL)
};

static const struct i2c_device_id vcnl4035_id[] = {
{ "vcnl4035", 0},
{ }
};
MODULE_DEVICE_TABLE(i2c, vcnl4035_id);

static const struct of_device_id vcnl4035_of_match[] = {
{ .compatible = "vishay,vcnl4035", },
{ }
Expand All @@ -666,6 +672,7 @@ static struct i2c_driver vcnl4035_driver = {
},
.probe = vcnl4035_probe,
.remove = vcnl4035_remove,
.id_table = vcnl4035_id,
};

module_i2c_driver(vcnl4035_driver);
Expand Down

0 comments on commit 41a4b8f

Please sign in to comment.