Lines Matching defs:cdev
16 ath10k_thermal_get_max_throttle_state(struct thermal_cooling_device *cdev,
25 ath10k_thermal_get_cur_throttle_state(struct thermal_cooling_device *cdev,
28 struct ath10k *ar = cdev->devdata;
38 ath10k_thermal_set_cur_throttle_state(struct thermal_cooling_device *cdev,
41 struct ath10k *ar = cdev->devdata;
156 struct thermal_cooling_device *cdev;
163 cdev = thermal_cooling_device_register("ath10k_thermal", ar,
166 if (IS_ERR(cdev)) {
168 PTR_ERR(cdev));
172 ret = sysfs_create_link(&ar->dev->kobj, &cdev->device.kobj,
179 ar->thermal.cdev = cdev;
208 thermal_cooling_device_unregister(cdev);
218 thermal_cooling_device_unregister(ar->thermal.cdev);