ACPI / scan: always register container scan handler
Prevent platform devices from being created for ACPI containers if CONFIG_ACPI_CONTAINER is unset by compiling out the container scan handler's callbacks only in that case and still compiling its device ID list in and registering the scan handler in either case. This change is based on a prototype from Zhang Rui. Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com> Reviewed-by: Mika Westerberg <mika.westerberg@linux.intel.com>
This commit is contained in:
@@ -41,6 +41,8 @@ static const struct acpi_device_id container_device_ids[] = {
|
||||
{"", 0},
|
||||
};
|
||||
|
||||
#ifdef CONFIG_ACPI_CONTAINER
|
||||
|
||||
static int acpi_container_offline(struct container_dev *cdev)
|
||||
{
|
||||
struct acpi_device *adev = ACPI_COMPANION(&cdev->dev);
|
||||
@@ -107,7 +109,20 @@ static struct acpi_scan_handler container_handler = {
|
||||
},
|
||||
};
|
||||
|
||||
void __init acpi_container_init(void)
|
||||
{
|
||||
acpi_scan_add_handler(&container_handler);
|
||||
}
|
||||
|
||||
#else
|
||||
|
||||
static struct acpi_scan_handler container_handler = {
|
||||
.ids = container_device_ids,
|
||||
};
|
||||
|
||||
void __init acpi_container_init(void)
|
||||
{
|
||||
acpi_scan_add_handler_with_hotplug(&container_handler, "container");
|
||||
}
|
||||
|
||||
#endif /* CONFIG_ACPI_CONTAINER */
|
||||
|
Reference in New Issue
Block a user