summaryrefslogtreecommitdiff
path: root/include/linux/property.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/property.h')
-rw-r--r--include/linux/property.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/include/linux/property.h b/include/linux/property.h
index 3df7089f0dbd..d86de017c689 100644
--- a/include/linux/property.h
+++ b/include/linux/property.h
@@ -417,29 +417,15 @@ int fwnode_graph_parse_endpoint(const struct fwnode_handle *fwnode,
/* Software fwnode support - when HW description is incomplete or missing */
/**
- * struct software_node_reference - Named software node reference property
- * @name: Name of the property
- * @nrefs: Number of elements in @refs array
- * @refs: Array of references with optional arguments
- */
-struct software_node_reference {
- const char *name;
- unsigned int nrefs;
- const struct software_node_ref_args *refs;
-};
-
-/**
* struct software_node - Software node description
* @name: Name of the software node
* @parent: Parent of the software node
* @properties: Array of device properties
- * @references: Array of software node reference properties
*/
struct software_node {
const char *name;
const struct software_node *parent;
const struct property_entry *properties;
- const struct software_node_reference *references;
};
bool is_software_node(const struct fwnode_handle *fwnode);