diff options
author | Alan Tull <atull@kernel.org> | 2017-09-11 14:16:49 -0500 |
---|---|---|
committer | Guenter Roeck <linux@roeck-us.net> | 2017-10-29 18:36:03 -0700 |
commit | fd53f62160e5fcea18f6adcddd40ba429dc127b6 (patch) | |
tree | b0b1b97fef506ea57a72ad966b57017ba657dfaa /drivers/hwmon | |
parent | 0ec54a2e8ee22b13e9a89dfd76e66e5b75ca9885 (diff) | |
download | linux-fd53f62160e5fcea18f6adcddd40ba429dc127b6.tar.gz linux-fd53f62160e5fcea18f6adcddd40ba429dc127b6.tar.bz2 linux-fd53f62160e5fcea18f6adcddd40ba429dc127b6.zip |
hwmon: (max1619) Add dt binding
Add new device tree binding for max1619.
Signed-off-by: Alan Tull <atull@kernel.org>
Cc: Jean Delvare <jdelvare@suse.com>
Cc: Guenter Roeck <linux@roeck-us.net>
Cc: Rob Herring <robh+dt@kernel.org>
Cc: Mark Rutland <mark.rutland@arm.com>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Diffstat (limited to 'drivers/hwmon')
-rw-r--r-- | drivers/hwmon/max1619.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/drivers/hwmon/max1619.c b/drivers/hwmon/max1619.c index a18278938494..76d966932941 100644 --- a/drivers/hwmon/max1619.c +++ b/drivers/hwmon/max1619.c @@ -303,10 +303,20 @@ static const struct i2c_device_id max1619_id[] = { }; MODULE_DEVICE_TABLE(i2c, max1619_id); +#ifdef CONFIG_OF +static const struct of_device_id max1619_of_match[] = { + { .compatible = "maxim,max1619", }, + {}, +}; + +MODULE_DEVICE_TABLE(of, max1619_of_match); +#endif + static struct i2c_driver max1619_driver = { .class = I2C_CLASS_HWMON, .driver = { .name = "max1619", + .of_match_table = of_match_ptr(max1619_of_match), }, .probe = max1619_probe, .id_table = max1619_id, |