Lines Matching refs:cdev
49 static int ath10k_thermal_get_max_dutycycle(struct thermal_cooling_device *cdev, in ath10k_thermal_get_max_dutycycle() argument
57 static int ath10k_thermal_get_cur_dutycycle(struct thermal_cooling_device *cdev, in ath10k_thermal_get_cur_dutycycle() argument
60 struct ath10k *ar = cdev->devdata; in ath10k_thermal_get_cur_dutycycle()
69 static int ath10k_thermal_set_cur_dutycycle(struct thermal_cooling_device *cdev, in ath10k_thermal_set_cur_dutycycle() argument
72 struct ath10k *ar = cdev->devdata; in ath10k_thermal_set_cur_dutycycle()
189 struct thermal_cooling_device *cdev; in ath10k_thermal_register() local
193 cdev = thermal_cooling_device_register("ath10k_thermal", ar, in ath10k_thermal_register()
196 if (IS_ERR(cdev)) { in ath10k_thermal_register()
198 PTR_ERR(cdev)); in ath10k_thermal_register()
202 ret = sysfs_create_link(&ar->dev->kobj, &cdev->device.kobj, in ath10k_thermal_register()
209 ar->thermal.cdev = cdev; in ath10k_thermal_register()
236 thermal_cooling_device_unregister(cdev); in ath10k_thermal_register()
242 thermal_cooling_device_unregister(ar->thermal.cdev); in ath10k_thermal_unregister()