diff options
author | Sakari Ailus <sakari.ailus@linux.intel.com> | 2022-03-31 14:54:48 +0200 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2022-04-05 15:30:47 +0200 |
commit | 55dcbc05827ebcefe888a2829e0a59343ce6ae0a (patch) | |
tree | 606a44d978efbb48983fd59afb7d5d987aed2bc5 /drivers/acpi | |
parent | device property: Convert device_{dma_supported,get_dma_attr} to fwnode (diff) | |
download | linux-55dcbc05827ebcefe888a2829e0a59343ce6ae0a.tar.xz linux-55dcbc05827ebcefe888a2829e0a59343ce6ae0a.zip |
ACPI: property: Move acpi_fwnode_device_get_match_data() up
Move acpi_fwnode_device_get_match_data() up below
acpi_fwnode_device_is_available() so the order matches that in struct
fwnode_operations.
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Reviewed-by: Heikki Krogerus <heikki.krogerus@linux.intel.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/acpi')
-rw-r--r-- | drivers/acpi/property.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/drivers/acpi/property.c b/drivers/acpi/property.c index 24983c379aba..9f7ca34b7a95 100644 --- a/drivers/acpi/property.c +++ b/drivers/acpi/property.c @@ -1256,6 +1256,13 @@ static bool acpi_fwnode_device_is_available(const struct fwnode_handle *fwnode) return acpi_device_is_present(to_acpi_device_node(fwnode)); } +static const void * +acpi_fwnode_device_get_match_data(const struct fwnode_handle *fwnode, + const struct device *dev) +{ + return acpi_device_get_match_data(dev); +} + static bool acpi_fwnode_device_dma_supported(const struct fwnode_handle *fwnode) { return acpi_dma_supported(to_acpi_device_node(fwnode)); @@ -1387,13 +1394,6 @@ static int acpi_fwnode_graph_parse_endpoint(const struct fwnode_handle *fwnode, return 0; } -static const void * -acpi_fwnode_device_get_match_data(const struct fwnode_handle *fwnode, - const struct device *dev) -{ - return acpi_device_get_match_data(dev); -} - #define DECLARE_ACPI_FWNODE_OPS(ops) \ const struct fwnode_operations ops = { \ .device_is_available = acpi_fwnode_device_is_available, \ |