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

Pull ACPI fix from Rafael Wysocki:
"Revert recent commit that caused multiple systems to misbehave due to
firmware issues"

* tag 'acpi-5.17-rc9' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm:
Revert "ACPI: scan: Do not add device IDs from _CID if _HID is not valid"

+5 -5
+5 -5
drivers/acpi/scan.c
··· 1377 1377 if (info->valid & ACPI_VALID_HID) { 1378 1378 acpi_add_id(pnp, info->hardware_id.string); 1379 1379 pnp->type.platform_id = 1; 1380 - if (info->valid & ACPI_VALID_CID) { 1381 - cid_list = &info->compatible_id_list; 1382 - for (i = 0; i < cid_list->count; i++) 1383 - acpi_add_id(pnp, cid_list->ids[i].string); 1384 - } 1380 + } 1381 + if (info->valid & ACPI_VALID_CID) { 1382 + cid_list = &info->compatible_id_list; 1383 + for (i = 0; i < cid_list->count; i++) 1384 + acpi_add_id(pnp, cid_list->ids[i].string); 1385 1385 } 1386 1386 if (info->valid & ACPI_VALID_ADR) { 1387 1387 pnp->bus_address = info->address;