|
@@ -1297,8 +1297,23 @@ static inline int lpit_read_residency_count_address(u64 *address)
|
|
|
}
|
|
|
#endif
|
|
|
|
|
|
+#ifdef CONFIG_ACPI_PPTT
|
|
|
int find_acpi_cpu_topology(unsigned int cpu, int level);
|
|
|
int find_acpi_cpu_topology_package(unsigned int cpu);
|
|
|
int find_acpi_cpu_cache_topology(unsigned int cpu, int level);
|
|
|
+#else
|
|
|
+static inline int find_acpi_cpu_topology(unsigned int cpu, int level)
|
|
|
+{
|
|
|
+ return -EINVAL;
|
|
|
+}
|
|
|
+static inline int find_acpi_cpu_topology_package(unsigned int cpu)
|
|
|
+{
|
|
|
+ return -EINVAL;
|
|
|
+}
|
|
|
+static inline int find_acpi_cpu_cache_topology(unsigned int cpu, int level)
|
|
|
+{
|
|
|
+ return -EINVAL;
|
|
|
+}
|
|
|
+#endif
|
|
|
|
|
|
#endif /*_LINUX_ACPI_H*/
|