Commit 9c1c5e0b authored by Saravana Kannan's avatar Saravana Kannan Committed by Greg Kroah-Hartman

of/platform: Disable generic device linking code for PowerPC

PowerPC platforms don't use the generic of/platform code to populate the
devices from DT.  Therefore the generic device linking code is never used
in PowerPC.  Compile it out to avoid warning about unused functions.

If a specific PowerPC platform wants to use this code in the future,
bringing this back for PowerPC would be trivial. We'll just need to export
of_link_to_suppliers() and then let the machine specific files do the
linking as they populate the devices from DT.
Signed-off-by: default avatarSaravana Kannan <saravanak@google.com>
Link: https://lore.kernel.org/r/20190806192654.138605-2-saravanak@google.comSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent e6aa640e
...@@ -506,6 +506,7 @@ int of_platform_default_populate(struct device_node *root, ...@@ -506,6 +506,7 @@ int of_platform_default_populate(struct device_node *root,
} }
EXPORT_SYMBOL_GPL(of_platform_default_populate); EXPORT_SYMBOL_GPL(of_platform_default_populate);
#ifndef CONFIG_PPC
static bool of_link_is_valid(struct device_node *con, struct device_node *sup) static bool of_link_is_valid(struct device_node *con, struct device_node *sup)
{ {
of_node_get(sup); of_node_get(sup);
...@@ -683,7 +684,6 @@ static int of_link_to_suppliers(struct device *dev) ...@@ -683,7 +684,6 @@ static int of_link_to_suppliers(struct device *dev)
return __of_link_to_suppliers(dev, dev->of_node); return __of_link_to_suppliers(dev, dev->of_node);
} }
#ifndef CONFIG_PPC
static const struct of_device_id reserved_mem_matches[] = { static const struct of_device_id reserved_mem_matches[] = {
{ .compatible = "qcom,rmtfs-mem" }, { .compatible = "qcom,rmtfs-mem" },
{ .compatible = "qcom,cmd-db" }, { .compatible = "qcom,cmd-db" },
......
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