Message ID | 20211112123542.3680629-6-thierry.reding@gmail.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | arm64: tegra: Add NVIDIA Jetson AGX Orin support | expand |
On Fri, Nov 12, 2021 at 01:35:36PM +0100, Thierry Reding wrote: > From: Mikko Perttunen <mperttunen@nvidia.com> > > 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> > --- > drivers/misc/sram.c | 1 + > 1 file changed, 1 insertion(+) Hi Greg, I forgot to Cc you on the initial submission, not realizing that I had this one-line driver change mixed into a set of DT bindings and device tree updates. Quoting in full. Would you mind if I pick this up into the Tegra tree, or do you want me to resend this to you for inclusion in your tree? Thanks, Thierry > > 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 }, > {} > }; > > -- > 2.33.1 >
On Tue, Dec 07, 2021 at 04:52:16PM +0100, Thierry Reding wrote: > On Fri, Nov 12, 2021 at 01:35:36PM +0100, Thierry Reding wrote: > > From: Mikko Perttunen <mperttunen@nvidia.com> > > > > 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> > > --- > > drivers/misc/sram.c | 1 + > > 1 file changed, 1 insertion(+) > > Hi Greg, > > I forgot to Cc you on the initial submission, not realizing that I had > this one-line driver change mixed into a set of DT bindings and device > tree updates. > > Quoting in full. Would you mind if I pick this up into the Tegra tree, > or do you want me to resend this to you for inclusion in your tree? A separate stand-alone patch would be great as b4 wants to grab all of the patches in this series. thanks, greg k-h
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 }, {} };