Lines Matching defs:hwmon
9 #include <linux/hwmon.h>
37 struct sl28cpld_hwmon *hwmon = dev_get_drvdata(dev);
43 ret = regmap_read(hwmon->regmap, hwmon->offset + FAN_INPUT,
97 struct sl28cpld_hwmon *hwmon;
104 hwmon = devm_kzalloc(&pdev->dev, sizeof(*hwmon), GFP_KERNEL);
105 if (!hwmon)
108 hwmon->regmap = dev_get_regmap(pdev->dev.parent, NULL);
109 if (!hwmon->regmap)
112 ret = device_property_read_u32(&pdev->dev, "reg", &hwmon->offset);
117 "sl28cpld_hwmon", hwmon,
120 dev_err(&pdev->dev, "failed to register as hwmon device");