summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorRob Herring <robh@kernel.org>2018-04-16 12:00:02 -0500
committerRob Herring <robh@kernel.org>2018-04-18 08:55:41 -0500
commit9cf7c9cb6b4d869cc26fafd3fe54c2cb69fc81ac (patch)
tree554c9da91e2d7decf40d7fcda4d1c837a263cdfb /drivers
parent60cc43fc888428bb2f18f08997432d426a243338 (diff)
downloadlinux-0-day-9cf7c9cb6b4d869cc26fafd3fe54c2cb69fc81ac.tar.gz
linux-0-day-9cf7c9cb6b4d869cc26fafd3fe54c2cb69fc81ac.tar.xz
of/numa: drop export of of_node_to_nid
The "generic" implementation of of_node_to_nid is only used by arm64 and only in built-in code, so remove its export. Any device with a struct device should be able to use dev_to_node() instead. Also, exporting of_node_to_nid doesn't actually work if we build a module on an arch that doesn't select OF_NUMA nor provide its own of_node_to_nid implementation. Cc: Frank Rowand <frowand.list@gmail.com> Signed-off-by: Rob Herring <robh@kernel.org>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/of/of_numa.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/of/of_numa.c b/drivers/of/of_numa.c
index f9d5480a4ae53..27d9b4bba535c 100644
--- a/drivers/of/of_numa.c
+++ b/drivers/of/of_numa.c
@@ -177,7 +177,6 @@ int of_node_to_nid(struct device_node *device)
return NUMA_NO_NODE;
}
-EXPORT_SYMBOL(of_node_to_nid);
int __init of_numa_init(void)
{