diff options
| author | Mikko Perttunen <[email protected]> | 2021-12-08 14:05:41 +0000 |
|---|---|---|
| committer | Greg Kroah-Hartman <[email protected]> | 2021-12-08 14:16:05 +0000 |
| commit | 2925fc1c102943a2496e13ef78d68acd5fd0dc99 (patch) | |
| tree | 2456b984b41ce6cc648c52480ea544fea8f8b1f3 /drivers/misc/sram.c | |
| parent | uio: uio_dmem_genirq: Catch the Exception (diff) | |
| download | kernel-2925fc1c102943a2496e13ef78d68acd5fd0dc99.tar.gz kernel-2925fc1c102943a2496e13ef78d68acd5fd0dc99.zip | |
misc: sram: Add compatible string for Tegra234 SYSRAM
We want to use the same behavior as on Tegra186 and Tegra194, so add
this the compatible string for Tegra234 SYSRAM to the list.
Signed-off-by: Mikko Perttunen <[email protected]>
Signed-off-by: Thierry Reding <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Greg Kroah-Hartman <[email protected]>
Diffstat (limited to 'drivers/misc/sram.c')
| -rw-r--r-- | drivers/misc/sram.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/misc/sram.c b/drivers/misc/sram.c index 4c26b19f5154..f0e7f02605eb 100644 --- a/drivers/misc/sram.c +++ b/drivers/misc/sram.c @@ -371,6 +371,7 @@ static const struct of_device_id sram_dt_ids[] = { { .compatible = "atmel,sama5d2-securam", .data = &atmel_securam_config }, { .compatible = "nvidia,tegra186-sysram", .data = &tegra_sysram_config }, { .compatible = "nvidia,tegra194-sysram", .data = &tegra_sysram_config }, + { .compatible = "nvidia,tegra234-sysram", .data = &tegra_sysram_config }, {} }; |
