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.

ACPI: EC: Register a platform device for ECDT EC

To facilitate converting the ACPI EC driver into a platform one,
modify acpi_bus_register_early_device(), used by acpi_ec_ecdt_start()
for creating a struct acpi_device to represent the "early" EC based
on the ECDT ACPI table, to carry out the default ACPI enumeration for
the given device which will cause a platform device to be registered
for it.

No intentional functional impact.

Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Link: https://patch.msgid.link/2397353.ElGaqSPkdT@rafael.j.wysocki

+2
+2
drivers/acpi/scan.c
··· 2754 2754 if (result) 2755 2755 return result; 2756 2756 2757 + acpi_default_enumeration(device); 2758 + 2757 2759 device->flags.match_driver = true; 2758 2760 return device_attach(&device->dev); 2759 2761 }