mirror of
https://github.com/torvalds/linux.git
synced 2026-09-23 13:14:02 +02:00
driver core: platform: provide platform_device_set_of_node()
Encapsulate the reference counting logic for OF nodes assigned to platform devices created with platform_device_alloc() in a helper function. Make the kerneldoc state that this is the proper interface for assigning OF nodes to dynamically allocated platform devices. This will allow us to switch to counting the references of the device's firmware nodes, not only the OF nodes. Reviewed-by: Manuel Ebner <manuelebner@mailbox.org> Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@oss.qualcomm.com> Link: https://patch.msgid.link/20260706-pdev-fwnode-ref-v3-2-1ff028e33779@oss.qualcomm.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
bd0abfe6b0
commit
714cfe9e14
|
|
@ -693,6 +693,24 @@ int platform_device_add_data(struct platform_device *pdev, const void *data,
|
|||
}
|
||||
EXPORT_SYMBOL_GPL(platform_device_add_data);
|
||||
|
||||
/**
|
||||
* platform_device_set_of_node - assign an OF node to device
|
||||
* @pdev: platform device to add the node for
|
||||
* @np: new device node
|
||||
*
|
||||
* Assign an OF node to this platform device. Internally keep track of the
|
||||
* reference count. Devices created with platform_device_alloc() must use this
|
||||
* function instead of assigning the node manually.
|
||||
*/
|
||||
void platform_device_set_of_node(struct platform_device *pdev,
|
||||
struct device_node *np)
|
||||
{
|
||||
of_node_put(pdev->dev.of_node);
|
||||
pdev->dev.of_node = of_node_get(np);
|
||||
pdev->dev.fwnode = of_fwnode_handle(np);
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(platform_device_set_of_node);
|
||||
|
||||
/**
|
||||
* platform_device_add - add a platform device to device hierarchy
|
||||
* @pdev: platform device we're adding
|
||||
|
|
|
|||
|
|
@ -19,6 +19,7 @@ struct irq_affinity;
|
|||
struct mfd_cell;
|
||||
struct property_entry;
|
||||
struct platform_device_id;
|
||||
struct device_node;
|
||||
|
||||
struct platform_device {
|
||||
const char *name;
|
||||
|
|
@ -262,6 +263,8 @@ extern int platform_device_add_resources(struct platform_device *pdev,
|
|||
unsigned int num);
|
||||
extern int platform_device_add_data(struct platform_device *pdev,
|
||||
const void *data, size_t size);
|
||||
void platform_device_set_of_node(struct platform_device *pdev,
|
||||
struct device_node *np);
|
||||
extern int platform_device_add(struct platform_device *pdev);
|
||||
extern void platform_device_del(struct platform_device *pdev);
|
||||
extern void platform_device_put(struct platform_device *pdev);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user