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

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'acpi-5.1-rc8' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm

Pull ACPI fix from Rafael Wysocki:
"Revert a recent ACPICA change that caused initialization to fail on
systems with Thunderbolt docking stations connected at the init time"

* tag 'acpi-5.1-rc8' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm:
Revert "ACPICA: Clear status of GPEs before enabling them"

+1 -5
+1 -5
drivers/acpi/acpica/evgpe.c
··· 81 81 82 82 ACPI_FUNCTION_TRACE(ev_enable_gpe); 83 83 84 - /* Clear the GPE status */ 85 - status = acpi_hw_clear_gpe(gpe_event_info); 86 - if (ACPI_FAILURE(status)) 87 - return_ACPI_STATUS(status); 88 - 89 84 /* Enable the requested GPE */ 85 + 90 86 status = acpi_hw_low_set_gpe(gpe_event_info, ACPI_GPE_ENABLE); 91 87 return_ACPI_STATUS(status); 92 88 }