Re: [RFC 02/10] property: add fwnode_get_match_data()

From: Andy Shevchenko
Date: Mon Feb 21 2022 - 12:51:37 EST


On Mon, Feb 21, 2022 at 05:26:44PM +0100, Clément Léger wrote:
> Add fwnode_get_match_data() which is meant to be used as
> device_get_match_data for fwnode_operations.

...

> +const void *fwnode_get_match_data(const struct fwnode_handle *fwnode,
> + const struct device *dev)
> +{
> + const struct of_device_id *match;
> +
> + match = fwnode_match_node(fwnode, dev->driver->of_match_table);
> + if (!match)
> + return NULL;
> +
> + return match->data;
> +}

It's OF-centric API, why it has fwnode prefix? Can it leave in drivers/of instead?


--
With Best Regards,
Andy Shevchenko