aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/xen/xen-acpi-processor.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/xen/xen-acpi-processor.c')
-rw-r--r--drivers/xen/xen-acpi-processor.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/xen/xen-acpi-processor.c b/drivers/xen/xen-acpi-processor.c
index 82358d14ecf1..59fc190f1e92 100644
--- a/drivers/xen/xen-acpi-processor.c
+++ b/drivers/xen/xen-acpi-processor.c
@@ -127,7 +127,7 @@ static int push_cxx_to_hypervisor(struct acpi_processor *_pr)
127 pr_debug(" C%d: %s %d uS\n", 127 pr_debug(" C%d: %s %d uS\n",
128 cx->type, cx->desc, (u32)cx->latency); 128 cx->type, cx->desc, (u32)cx->latency);
129 } 129 }
130 } else if (ret != -EINVAL) 130 } else if ((ret != -EINVAL) && (ret != -ENOSYS))
131 /* EINVAL means the ACPI ID is incorrect - meaning the ACPI 131 /* EINVAL means the ACPI ID is incorrect - meaning the ACPI
132 * table is referencing a non-existing CPU - which can happen 132 * table is referencing a non-existing CPU - which can happen
133 * with broken ACPI tables. */ 133 * with broken ACPI tables. */
@@ -259,7 +259,7 @@ static int push_pxx_to_hypervisor(struct acpi_processor *_pr)
259 (u32) perf->states[i].power, 259 (u32) perf->states[i].power,
260 (u32) perf->states[i].transition_latency); 260 (u32) perf->states[i].transition_latency);
261 } 261 }
262 } else if (ret != -EINVAL) 262 } else if ((ret != -EINVAL) && (ret != -ENOSYS))
263 /* EINVAL means the ACPI ID is incorrect - meaning the ACPI 263 /* EINVAL means the ACPI ID is incorrect - meaning the ACPI
264 * table is referencing a non-existing CPU - which can happen 264 * table is referencing a non-existing CPU - which can happen
265 * with broken ACPI tables. */ 265 * with broken ACPI tables. */