Skip to content

Commit 43b28ca

Browse files
committed
Merge branches 'acpi-processor' and 'pm-cpufreq'
* acpi-processor: ACPI / processor: Fix thermal cooling device regression * pm-cpufreq: cpufreq: scpi-cpufreq: signedness bug in scpi_get_dvfs_info()
2 parents ce360db + a7def56 commit 43b28ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/cpufreq/scpi-cpufreq.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ static struct scpi_ops *scpi_ops;
3131

3232
static struct scpi_dvfs_info *scpi_get_dvfs_info(struct device *cpu_dev)
3333
{
34-
u8 domain = topology_physical_package_id(cpu_dev->id);
34+
int domain = topology_physical_package_id(cpu_dev->id);
3535

3636
if (domain < 0)
3737
return ERR_PTR(-EINVAL);

0 commit comments

Comments
 (0)