Commit 0e3edd94 authored by YueHaibing's avatar YueHaibing Committed by Rafael J. Wysocki

drivers: base: swnode: Make two functions static

Fix sparse warning:

drivers/base/swnode.c:475:22: warning: symbol 'software_node_get_parent' was not declared. Should it be static?
drivers/base/swnode.c:484:22: warning: symbol 'software_node_get_next_child' was not declared. Should it be static?
Signed-off-by: default avatarYueHaibing <yuehaibing@huawei.com>
Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
parent 9e98c678
...@@ -472,7 +472,7 @@ static int software_node_read_string_array(const struct fwnode_handle *fwnode, ...@@ -472,7 +472,7 @@ static int software_node_read_string_array(const struct fwnode_handle *fwnode,
val, nval); val, nval);
} }
struct fwnode_handle * static struct fwnode_handle *
software_node_get_parent(const struct fwnode_handle *fwnode) software_node_get_parent(const struct fwnode_handle *fwnode)
{ {
struct software_node *swnode = to_software_node(fwnode); struct software_node *swnode = to_software_node(fwnode);
...@@ -481,7 +481,7 @@ software_node_get_parent(const struct fwnode_handle *fwnode) ...@@ -481,7 +481,7 @@ software_node_get_parent(const struct fwnode_handle *fwnode)
NULL; NULL;
} }
struct fwnode_handle * static struct fwnode_handle *
software_node_get_next_child(const struct fwnode_handle *fwnode, software_node_get_next_child(const struct fwnode_handle *fwnode,
struct fwnode_handle *child) struct fwnode_handle *child)
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment