diff options
author | Lv Zheng <lv.zheng@intel.com> | 2015-12-29 09:02:08 +0300 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2016-01-01 05:47:37 +0300 |
commit | aa6abd2be1cc7fa2593c8377f78420dec0a5d7a5 (patch) | |
tree | 732856c0754e0f514756a840be003c59179afdf3 /drivers/acpi/acpica/evhandler.c | |
parent | f31a99cefd05f798eee8b592e22175ff3fe1876b (diff) | |
download | linux-aa6abd2be1cc7fa2593c8377f78420dec0a5d7a5.tar.xz |
ACPICA: Events: Uses common_notify for address space handlers
ACPICA commit 5ea0fb75fdf1aa7c0aba067dfa4d5dc3a9279461
The address space handlers can be attached to not only Device but also
Processor/thermal_zone objects, so it is better to use their common
class 'CommonNotify' instead. Lv Zheng.
Link: https://github.com/acpica/acpica/commit/5ea0fb75
Signed-off-by: Lv Zheng <lv.zheng@intel.com>
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/acpi/acpica/evhandler.c')
-rw-r--r-- | drivers/acpi/acpica/evhandler.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/drivers/acpi/acpica/evhandler.c b/drivers/acpi/acpica/evhandler.c index 6a7fc1163bc9..709419c7cde4 100644 --- a/drivers/acpi/acpica/evhandler.c +++ b/drivers/acpi/acpica/evhandler.c @@ -159,7 +159,7 @@ acpi_ev_has_default_handler(struct acpi_namespace_node *node, obj_desc = acpi_ns_get_attached_object(node); if (obj_desc) { - handler_obj = obj_desc->device.handler; + handler_obj = obj_desc->common_notify.handler; /* Walk the linked list of handlers for this object */ @@ -250,7 +250,8 @@ acpi_ev_install_handler(acpi_handle obj_handle, next_handler_obj = acpi_ev_find_region_handler(handler_obj->address_space. space_id, - obj_desc->device.handler); + obj_desc->common_notify. + handler); if (next_handler_obj) { /* Found a handler, is it for the same address space? */ @@ -444,7 +445,8 @@ acpi_ev_install_space_handler(struct acpi_namespace_node * node, * the handler is not already installed. */ handler_obj = acpi_ev_find_region_handler(space_id, - obj_desc->device. + obj_desc-> + common_notify. handler); if (handler_obj) { @@ -531,13 +533,13 @@ acpi_ev_install_space_handler(struct acpi_namespace_node * node, /* Install at head of Device.address_space list */ - handler_obj->address_space.next = obj_desc->device.handler; + handler_obj->address_space.next = obj_desc->common_notify.handler; /* * The Device object is the first reference on the handler_obj. * Each region that uses the handler adds a reference. */ - obj_desc->device.handler = handler_obj; + obj_desc->common_notify.handler = handler_obj; /* * Walk the namespace finding all of the regions this handler will |