PM: EM: Drop unused parameter from em_adjust_new_capacity()

[ Upstream commit 5fad775d43 ]

The max_cap parameter is never used in em_adjust_new_capacity(), so
drop it.

No functional impact.

Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Reviewed-by: Lukasz Luba <lukasz.luba@arm.com>
Link: https://patch.msgid.link/2369979.ElGaqSPkdT@rjwysocki.net
Stable-dep-of: 1ebe8f7e78 ("PM: EM: Fix late boot with holes in CPU topology")
Signed-off-by: Sasha Levin <sashal@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Rafael J. Wysocki
2025-10-21 15:22:22 -04:00
committed by Greg Kroah-Hartman
parent 73a722a4f1
commit deeede236b

View File

@@ -723,8 +723,7 @@ free_em_table:
* are correctly calculated.
*/
static void em_adjust_new_capacity(struct device *dev,
struct em_perf_domain *pd,
u64 max_cap)
struct em_perf_domain *pd)
{
struct em_perf_table *em_table;
@@ -795,7 +794,7 @@ static void em_check_capacity_update(void)
cpu, cpu_capacity, em_max_perf);
dev = get_cpu_device(cpu);
em_adjust_new_capacity(dev, pd, cpu_capacity);
em_adjust_new_capacity(dev, pd);
}
free_cpumask_var(cpu_done_mask);