diff options
author | Saravana Kannan <saravanak@google.com> | 2019-08-06 12:26:54 -0700 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2019-08-15 17:36:54 +0200 |
commit | 9c1c5e0bc5ec032e78bf15c302f3b20152f865ad (patch) | |
tree | 353324b13dbdd7b5fd5a48048490af8333fc7ece | |
parent | e6aa640eb2f68920cb849aec0cab44f05d843238 (diff) | |
download | kernel_replicant_linux-9c1c5e0bc5ec032e78bf15c302f3b20152f865ad.tar.gz kernel_replicant_linux-9c1c5e0bc5ec032e78bf15c302f3b20152f865ad.tar.bz2 kernel_replicant_linux-9c1c5e0bc5ec032e78bf15c302f3b20152f865ad.zip |
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: Saravana Kannan <saravanak@google.com>
Link: https://lore.kernel.org/r/20190806192654.138605-2-saravanak@google.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/of/platform.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/of/platform.c b/drivers/of/platform.c index a3cd69772264..e5f7e40df439 100644 --- a/drivers/of/platform.c +++ b/drivers/of/platform.c @@ -506,6 +506,7 @@ int of_platform_default_populate(struct device_node *root, } EXPORT_SYMBOL_GPL(of_platform_default_populate); +#ifndef CONFIG_PPC static bool of_link_is_valid(struct device_node *con, struct device_node *sup) { of_node_get(sup); @@ -683,7 +684,6 @@ static int of_link_to_suppliers(struct device *dev) return __of_link_to_suppliers(dev, dev->of_node); } -#ifndef CONFIG_PPC static const struct of_device_id reserved_mem_matches[] = { { .compatible = "qcom,rmtfs-mem" }, { .compatible = "qcom,cmd-db" }, |