Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

ACPI: resolve merge conflict between sem2mutex and processor_perflib.c

Signed-off-by: Len Brown <len.brown@intel.com>

Len Brown 785fcccd d42510a0

+2 -2
+2 -2
drivers/acpi/processor_perflib.c
··· 624 624 struct acpi_processor *match_pr; 625 625 struct acpi_psd_package *match_pdomain; 626 626 627 - down(&performance_sem); 627 + mutex_lock(&performance_mutex); 628 628 629 629 retval = 0; 630 630 ··· 772 772 pr->performance = NULL; /* Will be set for real in register */ 773 773 } 774 774 775 - up(&performance_sem); 775 + mutex_unlock(&performance_mutex); 776 776 return retval; 777 777 } 778 778 EXPORT_SYMBOL(acpi_processor_preregister_performance);