search for: xen_pad_device_ids

Displaying 1 result from an estimated 1 matches for "xen_pad_device_ids".

2012 Feb 23
7
[PATCH 2/2] RFC: Xen pad logic
...vice, + int type) +{ + int num_cpus = 0; + + mutex_lock(&xen_cpu_lock); + xen_acpi_pad_idle_cpus(&num_cpus); + mutex_unlock(&xen_cpu_lock); + + acpi_remove_notify_handler(device->handle, + ACPI_DEVICE_NOTIFY, xen_acpi_pad_notify); + return 0; +} + +static const struct acpi_device_id xen_pad_device_ids[] = { + {"ACPI000C", 0}, + {"", 0}, +}; + +static struct acpi_driver xen_acpi_pad_driver = { + .name = "processor_aggregator", + .class = ACPI_PROCESSOR_AGGREGATOR_CLASS, + .ids = xen_pad_device_ids, + .ops = { + .add = xen_acpi_pad_add, + .remove = xen_acpi_pad_remo...