mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-06-17 20:25:19 +00:00
driver core / ACPI: Represent ACPI companions using fwnode_handle
Now that we have struct fwnode_handle, we can use that to point to ACPI companions from struct device objects instead of pointing to struct acpi_device directly. There are two benefits from that. First, the somewhat ugly and hackish struct acpi_dev_node can be dropped and, second, the same struct fwnode_handle pointer can be used in the future to point to other (non-ACPI) firmware device node types. Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com> Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Acked-by: Grant Likely <grant.likely@linaro.org>
This commit is contained in:
parent
06e5801b8c
commit
ce793486e2
12 changed files with 44 additions and 31 deletions
|
@ -59,7 +59,7 @@ extern int platform_add_devices(struct platform_device **, int);
|
|||
|
||||
struct platform_device_info {
|
||||
struct device *parent;
|
||||
struct acpi_dev_node acpi_node;
|
||||
struct fwnode_handle *fwnode;
|
||||
|
||||
const char *name;
|
||||
int id;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue