Browse Source

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()
Rafael J. Wysocki 9 years ago
parent
commit
43b28ca8df
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/cpufreq/scpi-cpufreq.c

+ 1 - 1
drivers/cpufreq/scpi-cpufreq.c

@@ -31,7 +31,7 @@ static struct scpi_ops *scpi_ops;
 
 static struct scpi_dvfs_info *scpi_get_dvfs_info(struct device *cpu_dev)
 {
-	u8 domain = topology_physical_package_id(cpu_dev->id);
+	int domain = topology_physical_package_id(cpu_dev->id);
 
 	if (domain < 0)
 		return ERR_PTR(-EINVAL);