diff options
author | Thierry Reding <treding@nvidia.com> | 2015-01-09 05:49:33 -0500 |
---|---|---|
committer | Thierry Reding <treding@nvidia.com> | 2015-01-09 10:14:36 -0500 |
commit | 9b07eb0537fb5f4d5fed1c2466febf59170f2b2e (patch) | |
tree | 4441bfc6fec7d8c9b45185c58e0b63661faa208e | |
parent | 200d876a5ad136e9d92a107a8190dd8d017d76fc (diff) |
soc/tegra: fuse: Add Tegra132 support
Tegra132 is very similar to Tegra124 from a peripheral point of view and
uses the same fuse controller.
Signed-off-by: Thierry Reding <treding@nvidia.com>
-rw-r--r-- | drivers/soc/tegra/fuse/fuse-tegra.c | 1 | ||||
-rw-r--r-- | drivers/soc/tegra/fuse/fuse-tegra30.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/drivers/soc/tegra/fuse/fuse-tegra.c b/drivers/soc/tegra/fuse/fuse-tegra.c index 011a3363c265..c0d660f1aaac 100644 --- a/drivers/soc/tegra/fuse/fuse-tegra.c +++ b/drivers/soc/tegra/fuse/fuse-tegra.c | |||
@@ -81,6 +81,7 @@ static const struct of_device_id car_match[] __initconst = { | |||
81 | { .compatible = "nvidia,tegra30-car", }, | 81 | { .compatible = "nvidia,tegra30-car", }, |
82 | { .compatible = "nvidia,tegra114-car", }, | 82 | { .compatible = "nvidia,tegra114-car", }, |
83 | { .compatible = "nvidia,tegra124-car", }, | 83 | { .compatible = "nvidia,tegra124-car", }, |
84 | { .compatible = "nvidia,tegra132-car", }, | ||
84 | {}, | 85 | {}, |
85 | }; | 86 | }; |
86 | 87 | ||
diff --git a/drivers/soc/tegra/fuse/fuse-tegra30.c b/drivers/soc/tegra/fuse/fuse-tegra30.c index d1a4290cda5c..4d2f71bf65c5 100644 --- a/drivers/soc/tegra/fuse/fuse-tegra30.c +++ b/drivers/soc/tegra/fuse/fuse-tegra30.c | |||
@@ -182,6 +182,7 @@ static void __init legacy_fuse_init(void) | |||
182 | fuse_info = &tegra114_info; | 182 | fuse_info = &tegra114_info; |
183 | break; | 183 | break; |
184 | case TEGRA124: | 184 | case TEGRA124: |
185 | case TEGRA132: | ||
185 | fuse_info = &tegra124_info; | 186 | fuse_info = &tegra124_info; |
186 | break; | 187 | break; |
187 | default: | 188 | default: |