Lines Matching refs:cdev
27 ath10k_thermal_get_max_throttle_state(struct thermal_cooling_device *cdev, in ath10k_thermal_get_max_throttle_state() argument
36 ath10k_thermal_get_cur_throttle_state(struct thermal_cooling_device *cdev, in ath10k_thermal_get_cur_throttle_state() argument
39 struct ath10k *ar = cdev->devdata; in ath10k_thermal_get_cur_throttle_state()
49 ath10k_thermal_set_cur_throttle_state(struct thermal_cooling_device *cdev, in ath10k_thermal_set_cur_throttle_state() argument
52 struct ath10k *ar = cdev->devdata; in ath10k_thermal_set_cur_throttle_state()
164 struct thermal_cooling_device *cdev; in ath10k_thermal_register() local
168 cdev = thermal_cooling_device_register("ath10k_thermal", ar, in ath10k_thermal_register()
171 if (IS_ERR(cdev)) { in ath10k_thermal_register()
173 PTR_ERR(cdev)); in ath10k_thermal_register()
177 ret = sysfs_create_link(&ar->dev->kobj, &cdev->device.kobj, in ath10k_thermal_register()
184 ar->thermal.cdev = cdev; in ath10k_thermal_register()
212 thermal_cooling_device_unregister(cdev); in ath10k_thermal_register()
219 thermal_cooling_device_unregister(ar->thermal.cdev); in ath10k_thermal_unregister()