[ACPI] Fix the regression with c1_default_handler on some systems where C-states come from FADT.

Thanks to Kevin Radloff for identifying the issue and
isolating it to exact line of code that is causing the issue.

Signed-off-by: Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>

authored by Venkatesh Pallipadi and committed by Len Brown 4a716402 668d74c0

+1 -1
+1 -1
drivers/acpi/processor_idle.c
··· 842 result = acpi_processor_get_power_info_cst(pr); 843 if ((result) || (acpi_processor_power_verify(pr) < 2)) { 844 result = acpi_processor_get_power_info_fadt(pr); 845 - if (result) 846 result = acpi_processor_get_power_info_default_c1(pr); 847 } 848
··· 842 result = acpi_processor_get_power_info_cst(pr); 843 if ((result) || (acpi_processor_power_verify(pr) < 2)) { 844 result = acpi_processor_get_power_info_fadt(pr); 845 + if ((result) || (acpi_processor_power_verify(pr) < 2)) 846 result = acpi_processor_get_power_info_default_c1(pr); 847 } 848