aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-tegra/pmc.c
diff options
context:
space:
mode:
authorJoseph Lo <josephl@nvidia.com>2013-02-26 16:27:42 +0000
committerStephen Warren <swarren@nvidia.com>2013-03-11 14:29:44 -0600
commit88c4aba92bc57334119bcff58ac87152c3f2981e (patch)
tree2e16167225e48f6887084372b5cd13ad5f9580c5 /arch/arm/mach-tegra/pmc.c
parentARM: tegra: refactor tegra{20,30}_boot_secondary (diff)
downloadlinux-dev-88c4aba92bc57334119bcff58ac87152c3f2981e.tar.xz
linux-dev-88c4aba92bc57334119bcff58ac87152c3f2981e.zip
ARM: tegra: pmc: add specific compatible DT string for Tegra30 and Tegra114
The PMC HW is not 100% compatible across all Tegra series. We need to specify each of them in the DT match table. Signed-off-by: Joseph Lo <josephl@nvidia.com> Signed-off-by: Stephen Warren <swarren@nvidia.com>
Diffstat (limited to 'arch/arm/mach-tegra/pmc.c')
-rw-r--r--arch/arm/mach-tegra/pmc.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/mach-tegra/pmc.c b/arch/arm/mach-tegra/pmc.c
index d4fdb5fcec20..5d79d34e2c0f 100644
--- a/arch/arm/mach-tegra/pmc.c
+++ b/arch/arm/mach-tegra/pmc.c
@@ -36,6 +36,8 @@ static inline void tegra_pmc_writel(u32 val, u32 reg)
#ifdef CONFIG_OF
static const struct of_device_id matches[] __initconst = {
+ { .compatible = "nvidia,tegra114-pmc" },
+ { .compatible = "nvidia,tegra30-pmc" },
{ .compatible = "nvidia,tegra20-pmc" },
{ }
};