ACPI / driver core: Introduce struct acpi_dev_node and related macros
commit95f8a082b9b1ead0c2859f2a7b1ac91ff63d8765
authorRafael J. Wysocki <rafael.j.wysocki@intel.com>
Tue, 20 Nov 2012 23:21:50 +0000 (21 00:21 +0100)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Tue, 20 Nov 2012 23:21:50 +0000 (21 00:21 +0100)
treeb269991cc59baa25b277a873ba264bca8716f129
parentf3fd0c8a7fc1e4f3107a09a75e622781d3007b56
ACPI / driver core: Introduce struct acpi_dev_node and related macros

To avoid adding an ACPI handle pointer to struct device on
architectures that don't use ACPI, or generally when CONFIG_ACPI is
not set, in which cases that pointer is useless, define struct
acpi_dev_node that will contain the handle pointer if CONFIG_ACPI is
set and will be empty otherwise and use it to represent the ACPI
device node field in struct device.

In addition to that define macros for reading and setting the ACPI
handle of a device that don't generate code when CONFIG_ACPI is
unset.  Modify the ACPI subsystem to use those macros instead of
referring to the given device's ACPI handle directly.

Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Reviewed-by: Mika Westerberg <mika.westerberg@linux.intel.com>
Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/acpi/glue.c
drivers/acpi/scan.c
include/acpi/acpi_bus.h
include/linux/device.h