|
@@ -207,6 +207,14 @@ void *dev_get_parentdata(struct udevice *dev);
|
|
*/
|
|
*/
|
|
void *dev_get_priv(struct udevice *dev);
|
|
void *dev_get_priv(struct udevice *dev);
|
|
|
|
|
|
|
|
+/**
|
|
|
|
+ * struct dev_get_parent() - Get the parent of a device
|
|
|
|
+ *
|
|
|
|
+ * @child: Child to check
|
|
|
|
+ * @return parent of child, or NULL if this is the root device
|
|
|
|
+ */
|
|
|
|
+struct udevice *dev_get_parent(struct udevice *child);
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* dev_get_of_data() - get the device tree data used to bind a device
|
|
* dev_get_of_data() - get the device tree data used to bind a device
|
|
*
|
|
*
|