[PATCH v2 3/3] soc/tegra: fuse: Add Tegra132 support
Thierry Reding
thierry.reding at gmail.com
Fri Jan 9 02:05:12 PST 2015
On Fri, Jan 09, 2015 at 12:49:25PM +0900, Alexandre Courbot wrote:
> On Thu, Jan 8, 2015 at 5:55 PM, Thierry Reding <thierry.reding at gmail.com> wrote:
> > From: Thierry Reding <treding at nvidia.com>
> >
> > Tegra132 is very similar to Tegra124 from a peripheral point of view and
> > uses the same fuse controller.
> >
> > Signed-off-by: Thierry Reding <treding at nvidia.com>
> > ---
> > Changes in v2:
> > - add missing break in Tegra132 case for legacy fuse init (Vince Hsu)
> >
> > drivers/soc/tegra/fuse/fuse-tegra.c | 1 +
> > drivers/soc/tegra/fuse/fuse-tegra30.c | 3 +++
> > 2 files changed, 4 insertions(+)
> >
> > 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 = {
> > { .compatible = "nvidia,tegra30-car", },
> > { .compatible = "nvidia,tegra114-car", },
> > { .compatible = "nvidia,tegra124-car", },
> > + { .compatible = "nvidia,tegra132-car", },
> > {},
> > };
> >
> > diff --git a/drivers/soc/tegra/fuse/fuse-tegra30.c b/drivers/soc/tegra/fuse/fuse-tegra30.c
> > index d1a4290cda5c..9e3679594259 100644
> > --- a/drivers/soc/tegra/fuse/fuse-tegra30.c
> > +++ b/drivers/soc/tegra/fuse/fuse-tegra30.c
> > @@ -184,6 +184,9 @@ static void __init legacy_fuse_init(void)
> > case TEGRA124:
> > fuse_info = &tegra124_info;
> > break;
> > + case TEGRA132:
> > + fuse_info = &tegra124_info;
> > + break;
>
> Nit, but why not
>
> case TEGRA124:
> + case TEGRA132:
> fuse_info = &tegra124_info;
> break;
Yes, that's even better.
Thierry
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20150109/a8f08b0d/attachment.sig>
More information about the linux-arm-kernel
mailing list