Commit 4e04b886 authored by Thierry Reding's avatar Thierry Reding

memory: tegra: Only include support for enabled SoCs

The memory client tables can be fairly large and they can easily be
omitted if support for the corresponding SoC is not enabled.
Signed-off-by: default avatarThierry Reding <treding@nvidia.com>
parent 52d15dd2
...@@ -267,7 +267,9 @@ static int tegra186_emc_remove(struct platform_device *pdev) ...@@ -267,7 +267,9 @@ static int tegra186_emc_remove(struct platform_device *pdev)
} }
static const struct of_device_id tegra186_emc_of_match[] = { static const struct of_device_id tegra186_emc_of_match[] = {
#if defined(CONFIG_ARCH_TEGRA186_SOC)
{ .compatible = "nvidia,tegra186-emc" }, { .compatible = "nvidia,tegra186-emc" },
#endif
{ /* sentinel */ } { /* sentinel */ }
}; };
MODULE_DEVICE_TABLE(of, tegra186_emc_of_match); MODULE_DEVICE_TABLE(of, tegra186_emc_of_match);
......
...@@ -9,7 +9,9 @@ ...@@ -9,7 +9,9 @@
#include <linux/of_device.h> #include <linux/of_device.h>
#include <linux/platform_device.h> #include <linux/platform_device.h>
#if defined(CONFIG_ARCH_TEGRA_186_SOC)
#include <dt-bindings/memory/tegra186-mc.h> #include <dt-bindings/memory/tegra186-mc.h>
#endif
struct tegra186_mc_client { struct tegra186_mc_client {
const char *name; const char *name;
...@@ -58,6 +60,7 @@ static void tegra186_mc_program_sid(struct tegra186_mc *mc) ...@@ -58,6 +60,7 @@ static void tegra186_mc_program_sid(struct tegra186_mc *mc)
} }
} }
#if defined(CONFIG_ARCH_TEGRA_186_SOC)
static const struct tegra186_mc_client tegra186_mc_clients[] = { static const struct tegra186_mc_client tegra186_mc_clients[] = {
{ {
.name = "ptcr", .name = "ptcr",
...@@ -570,6 +573,7 @@ static const struct tegra186_mc_soc tegra186_mc_soc = { ...@@ -570,6 +573,7 @@ static const struct tegra186_mc_soc tegra186_mc_soc = {
.num_clients = ARRAY_SIZE(tegra186_mc_clients), .num_clients = ARRAY_SIZE(tegra186_mc_clients),
.clients = tegra186_mc_clients, .clients = tegra186_mc_clients,
}; };
#endif
static int tegra186_mc_probe(struct platform_device *pdev) static int tegra186_mc_probe(struct platform_device *pdev)
{ {
...@@ -610,7 +614,9 @@ static int tegra186_mc_remove(struct platform_device *pdev) ...@@ -610,7 +614,9 @@ static int tegra186_mc_remove(struct platform_device *pdev)
} }
static const struct of_device_id tegra186_mc_of_match[] = { static const struct of_device_id tegra186_mc_of_match[] = {
#if defined(CONFIG_ARCH_TEGRA_186_SOC)
{ .compatible = "nvidia,tegra186-mc", .data = &tegra186_mc_soc }, { .compatible = "nvidia,tegra186-mc", .data = &tegra186_mc_soc },
#endif
{ /* sentinel */ } { /* sentinel */ }
}; };
MODULE_DEVICE_TABLE(of, tegra186_mc_of_match); MODULE_DEVICE_TABLE(of, tegra186_mc_of_match);
......
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