diff options
Diffstat (limited to 'drivers/base')
-rw-r--r-- | drivers/base/property.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/base/property.c b/drivers/base/property.c index 23514bf6..22849a8 100644 --- a/drivers/base/property.c +++ b/drivers/base/property.c @@ -183,11 +183,12 @@ static int pset_prop_read_string(struct property_set *pset, return 0; } -static inline struct fwnode_handle *dev_fwnode(struct device *dev) +struct fwnode_handle *dev_fwnode(struct device *dev) { return IS_ENABLED(CONFIG_OF) && dev->of_node ? &dev->of_node->fwnode : dev->fwnode; } +EXPORT_SYMBOL_GPL(dev_fwnode); /** * device_property_present - check if a property of a device is present |