summaryrefslogtreecommitdiffstats
path: root/drivers/hwmon/hih6130.c
diff options
context:
space:
mode:
authorAndreas Kemnade2018-12-27 16:13:48 +0100
committerGuenter Roeck2019-02-18 23:23:29 +0100
commit89bff8c2a07eb1185ec57725a9ce8dc0db2381a5 (patch)
treeebd532e4ed334449f46488063f43a4498b1fae5a /drivers/hwmon/hih6130.c
parenthwmon: (dell-smm) Support up to 10 temp sensors (diff)
downloadkernel-qcow2-linux-89bff8c2a07eb1185ec57725a9ce8dc0db2381a5.tar.gz
kernel-qcow2-linux-89bff8c2a07eb1185ec57725a9ce8dc0db2381a5.tar.xz
kernel-qcow2-linux-89bff8c2a07eb1185ec57725a9ce8dc0db2381a5.zip
hwmon: (hih6130) add dtb compatibility tables
This allows the hih6130 to be used in devicetree files and auto-probed that way. Signed-off-by: Andreas Kemnade <andreas@kemnade.info> Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Diffstat (limited to 'drivers/hwmon/hih6130.c')
-rw-r--r--drivers/hwmon/hih6130.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/drivers/hwmon/hih6130.c b/drivers/hwmon/hih6130.c
index 0ae1ee1dbf76..de1b50ddc740 100644
--- a/drivers/hwmon/hih6130.c
+++ b/drivers/hwmon/hih6130.c
@@ -254,8 +254,17 @@ static const struct i2c_device_id hih6130_id[] = {
};
MODULE_DEVICE_TABLE(i2c, hih6130_id);
+static const struct of_device_id hih6130_of_match[] = {
+ { .compatible = "honeywell,hih6130", },
+ { }
+};
+MODULE_DEVICE_TABLE(of, hih6130_of_match);
+
static struct i2c_driver hih6130_driver = {
- .driver.name = "hih6130",
+ .driver = {
+ .name = "hih6130",
+ .of_match_table = of_match_ptr(hih6130_of_match),
+ },
.probe = hih6130_probe,
.id_table = hih6130_id,
};