Lines Matching refs:dev
156 static struct max6642_data *max6642_update_device(struct device *dev) in max6642_update_device() argument
158 struct max6642_data *data = dev_get_drvdata(dev); in max6642_update_device()
165 dev_dbg(dev, "Updating max6642 data.\n"); in max6642_update_device()
196 static ssize_t temp_max10_show(struct device *dev, in temp_max10_show() argument
200 struct max6642_data *data = max6642_update_device(dev); in temp_max10_show()
206 static ssize_t temp_max_show(struct device *dev, in temp_max_show() argument
210 struct max6642_data *data = max6642_update_device(dev); in temp_max_show()
215 static ssize_t temp_max_store(struct device *dev, in temp_max_store() argument
220 struct max6642_data *data = dev_get_drvdata(dev); in temp_max_store()
236 static ssize_t alarm_show(struct device *dev, struct device_attribute *attr, in alarm_show() argument
240 struct max6642_data *data = max6642_update_device(dev); in alarm_show()
269 struct device *dev = &client->dev; in max6642_probe() local
273 data = devm_kzalloc(dev, sizeof(struct max6642_data), GFP_KERNEL); in max6642_probe()
283 hwmon_dev = devm_hwmon_device_register_with_groups(&client->dev, in max6642_probe()