diff options
Diffstat (limited to 'drivers/xen/xen-acpi-processor.c')
-rw-r--r-- | drivers/xen/xen-acpi-processor.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/xen/xen-acpi-processor.c b/drivers/xen/xen-acpi-processor.c index 5c2be963aa18..174b5653cd8a 100644 --- a/drivers/xen/xen-acpi-processor.c +++ b/drivers/xen/xen-acpi-processor.c | |||
@@ -501,11 +501,11 @@ static int __init xen_acpi_processor_init(void) | |||
501 | 501 | ||
502 | perf = per_cpu_ptr(acpi_perf_data, i); | 502 | perf = per_cpu_ptr(acpi_perf_data, i); |
503 | rc = acpi_processor_register_performance(perf, i); | 503 | rc = acpi_processor_register_performance(perf, i); |
504 | if (WARN_ON(rc)) | 504 | if (rc) |
505 | goto err_out; | 505 | goto err_out; |
506 | } | 506 | } |
507 | rc = acpi_processor_notify_smm(THIS_MODULE); | 507 | rc = acpi_processor_notify_smm(THIS_MODULE); |
508 | if (WARN_ON(rc)) | 508 | if (rc) |
509 | goto err_unregister; | 509 | goto err_unregister; |
510 | 510 | ||
511 | for_each_possible_cpu(i) { | 511 | for_each_possible_cpu(i) { |