Skip to content

Commit 07c6f3a

Browse files
ricardonrafaeljw
authored andcommitted
thermal: intel: hfi: Rename HFI_MAX_THERM_NOTIFY_COUNT
When processing a hardware update, HFI generates as many thermal netlink events as needed to relay all the updated CPU capabilities to user space. The constant HFI_MAX_THERM_NOTIFY_COUNT is the number of CPU capabilities updated per each of those events. Give this constant a more descriptive name. Signed-off-by: Ricardo Neri <ricardo.neri-calderon@linux.intel.com> Acked-by: Zhang Rui <rui.zhang@intel.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
1 parent ba1a587 commit 07c6f3a

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

drivers/thermal/intel/intel_hfi.c

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ static DEFINE_MUTEX(hfi_instance_lock);
167167

168168
static struct workqueue_struct *hfi_updates_wq;
169169
#define HFI_UPDATE_DELAY_MS 100
170-
#define HFI_MAX_THERM_NOTIFY_COUNT 16
170+
#define HFI_THERMNL_CAPS_PER_EVENT 16
171171

172172
static void get_hfi_caps(struct hfi_instance *hfi_instance,
173173
struct thermal_genl_cpu_caps *cpu_caps)
@@ -218,14 +218,14 @@ static void update_capabilities(struct hfi_instance *hfi_instance)
218218

219219
get_hfi_caps(hfi_instance, cpu_caps);
220220

221-
if (cpu_count < HFI_MAX_THERM_NOTIFY_COUNT)
221+
if (cpu_count < HFI_THERMNL_CAPS_PER_EVENT)
222222
goto last_cmd;
223223

224-
/* Process complete chunks of HFI_MAX_THERM_NOTIFY_COUNT capabilities. */
224+
/* Process complete chunks of HFI_THERMNL_CAPS_PER_EVENT capabilities. */
225225
for (i = 0;
226-
(i + HFI_MAX_THERM_NOTIFY_COUNT) <= cpu_count;
227-
i += HFI_MAX_THERM_NOTIFY_COUNT)
228-
thermal_genl_cpu_capability_event(HFI_MAX_THERM_NOTIFY_COUNT,
226+
(i + HFI_THERMNL_CAPS_PER_EVENT) <= cpu_count;
227+
i += HFI_THERMNL_CAPS_PER_EVENT)
228+
thermal_genl_cpu_capability_event(HFI_THERMNL_CAPS_PER_EVENT,
229229
&cpu_caps[i]);
230230

231231
cpu_count = cpu_count - i;

0 commit comments

Comments
 (0)