Skip to content

Commit 985e9ec

Browse files
Sakari Ailusrafaeljw
authored andcommitted
ACPI: Make acpi_node_get_parent() local
acpi_node_get_parent() isn't used outside drivers/acpi/property.c. Make it local. Signed-off-by: Sakari Ailus <[email protected]> Reviewed-by: Andy Shevchenko <[email protected]> Signed-off-by: Rafael J. Wysocki <[email protected]>
1 parent 9054fc6 commit 985e9ec

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

drivers/acpi/property.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1084,7 +1084,8 @@ struct fwnode_handle *acpi_get_next_subnode(const struct fwnode_handle *fwnode,
10841084
* Returns parent node of an ACPI device or data firmware node or %NULL if
10851085
* not available.
10861086
*/
1087-
struct fwnode_handle *acpi_node_get_parent(const struct fwnode_handle *fwnode)
1087+
static struct fwnode_handle *
1088+
acpi_node_get_parent(const struct fwnode_handle *fwnode)
10881089
{
10891090
if (is_acpi_data_node(fwnode)) {
10901091
/* All data nodes have parent pointer so just return that */

include/linux/acpi.h

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1182,7 +1182,6 @@ int acpi_node_prop_get(const struct fwnode_handle *fwnode, const char *propname,
11821182

11831183
struct fwnode_handle *acpi_get_next_subnode(const struct fwnode_handle *fwnode,
11841184
struct fwnode_handle *child);
1185-
struct fwnode_handle *acpi_node_get_parent(const struct fwnode_handle *fwnode);
11861185

11871186
struct acpi_probe_entry;
11881187
typedef bool (*acpi_probe_entry_validate_subtbl)(struct acpi_subtable_header *,
@@ -1287,12 +1286,6 @@ acpi_get_next_subnode(const struct fwnode_handle *fwnode,
12871286
return NULL;
12881287
}
12891288

1290-
static inline struct fwnode_handle *
1291-
acpi_node_get_parent(const struct fwnode_handle *fwnode)
1292-
{
1293-
return NULL;
1294-
}
1295-
12961289
static inline struct fwnode_handle *
12971290
acpi_graph_get_next_endpoint(const struct fwnode_handle *fwnode,
12981291
struct fwnode_handle *prev)

0 commit comments

Comments
 (0)