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-4.11-final' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm

Pull ACPI build fix from Rafael Wysocki:
"This avoids a false-positive build warning from the compiler.

Specifics:

- Avoid a false-positive warning regarding a variable that may not be
initialized that started to trigger after a previous general build
fix (Arnd Bergmann)"

* tag 'acpi-4.11-final' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm:
ACPI / power: Avoid maybe-uninitialized warning

+1
+1
drivers/acpi/power.c
··· 200 200 return -EINVAL; 201 201 202 202 /* The state of the list is 'on' IFF all resources are 'on'. */ 203 + cur_state = 0; 203 204 list_for_each_entry(entry, list, node) { 204 205 struct acpi_power_resource *resource = entry->resource; 205 206 acpi_handle handle = resource->device.handle;