Lines Matching defs:cdev
41 struct thermal_cooling_device *cdev;
173 static int pwm_fan_get_max_state(struct thermal_cooling_device *cdev,
176 struct pwm_fan_ctx *ctx = cdev->devdata;
186 static int pwm_fan_get_cur_state(struct thermal_cooling_device *cdev,
189 struct pwm_fan_ctx *ctx = cdev->devdata;
200 pwm_fan_set_cur_state(struct thermal_cooling_device *cdev, unsigned long state)
202 struct pwm_fan_ctx *ctx = cdev->devdata;
213 dev_err(&cdev->device, "Cannot set pwm!\n");
283 struct thermal_cooling_device *cdev;
383 cdev = devm_thermal_of_cooling_device_register(dev,
385 if (IS_ERR(cdev)) {
386 ret = PTR_ERR(cdev);
392 ctx->cdev = cdev;
393 thermal_cdev_update(cdev);