of/numa: drop export of of_node_to_nid
authorRob Herring <robh@kernel.org>
Mon, 16 Apr 2018 17:00:02 +0000 (12:00 -0500)
committerRob Herring <robh@kernel.org>
Wed, 18 Apr 2018 13:55:41 +0000 (08:55 -0500)
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>
drivers/of/of_numa.c

index f9d5480a4ae5331dd1ce3bdd2de2ea5f66ac572c..27d9b4bba535c21181324d6652129f84ff174083 100644 (file)
@@ -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)
 {