Lines Matching defs:cdev
58 struct thermal_cooling_device *cdev;
369 static int pwm_fan_get_max_state(struct thermal_cooling_device *cdev,
372 struct pwm_fan_ctx *ctx = cdev->devdata;
382 static int pwm_fan_get_cur_state(struct thermal_cooling_device *cdev,
385 struct pwm_fan_ctx *ctx = cdev->devdata;
396 pwm_fan_set_cur_state(struct thermal_cooling_device *cdev, unsigned long state)
398 struct pwm_fan_ctx *ctx = cdev->devdata;
409 dev_err(&cdev->device, "Cannot set pwm!\n");
477 struct thermal_cooling_device *cdev;
631 cdev = devm_thermal_of_cooling_device_register(dev,
633 if (IS_ERR(cdev)) {
634 ret = PTR_ERR(cdev);
640 ctx->cdev = cdev;