Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 173ee396 authored by Rob Herring's avatar Rob Herring
Browse files

of: Add missing exports of node name compare functions



Commit f42b0e18 ("of: add node name compare helper functions")
failed to add the module exports to of_node_name_eq() and
of_node_name_prefix(). Add them now.

Fixes: f42b0e18 ("of: add node name compare helper functions")
Signed-off-by: default avatarRob Herring <robh@kernel.org>
parent 885882a4
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -67,6 +67,7 @@ bool of_node_name_eq(const struct device_node *np, const char *name)

	return (strlen(name) == len) && (strncmp(node_name, name, len) == 0);
}
EXPORT_SYMBOL(of_node_name_eq);

bool of_node_name_prefix(const struct device_node *np, const char *prefix)
{
@@ -75,6 +76,7 @@ bool of_node_name_prefix(const struct device_node *np, const char *prefix)

	return strncmp(kbasename(np->full_name), prefix, strlen(prefix)) == 0;
}
EXPORT_SYMBOL(of_node_name_prefix);

int of_n_addr_cells(struct device_node *np)
{