misc: sram: Add compatible string for Tegra234 SYSRAM
authorMikko Perttunen <mperttunen@nvidia.com>
Wed, 8 Dec 2021 14:05:41 +0000 (15:05 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 8 Dec 2021 14:16:05 +0000 (15:16 +0100)
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 <mperttunen@nvidia.com>
Signed-off-by: Thierry Reding <treding@nvidia.com>
Link: https://lore.kernel.org/r/20211208140541.520238-1-thierry.reding@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/misc/sram.c

index 4c26b19..f0e7f02 100644 (file)
@@ -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 },
        {}
 };