Message ID | 20201203230554.1480352-1-arnd@kernel.org |
---|---|
State | Deferred |
Headers | show |
Series | soc/tegra: fix T234 build failure | expand |
On Fri, Dec 04, 2020 at 12:05:47AM +0100, Arnd Bergmann wrote: > From: Arnd Bergmann <arnd@arndb.de> > > In a T234-only configuration, the fuse driver fails to build: > > drivers/soc/tegra/fuse/fuse-tegra30.c:376:10: error: 'tegra30_fuse_read' undeclared here (not in a function); did you mean 'tegra_fuse_readl'? > > Add the missing check in the #ifdef conditional. > > Fixes: 1f44febf71ba ("soc/tegra: fuse: Add Tegra234 support") > Signed-off-by: Arnd Bergmann <arnd@arndb.de> > --- > drivers/soc/tegra/fuse/fuse-tegra30.c | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) Do you want me to pick this up, or are you going to apply it directly to ARM SoC? Either way is fine with me, so: Acked-by: Thierry Reding <treding@nvidia.com>
diff --git a/drivers/soc/tegra/fuse/fuse-tegra30.c b/drivers/soc/tegra/fuse/fuse-tegra30.c index 9ea7f0168457..887402752688 100644 --- a/drivers/soc/tegra/fuse/fuse-tegra30.c +++ b/drivers/soc/tegra/fuse/fuse-tegra30.c @@ -37,7 +37,9 @@ defined(CONFIG_ARCH_TEGRA_132_SOC) || \ defined(CONFIG_ARCH_TEGRA_210_SOC) || \ defined(CONFIG_ARCH_TEGRA_186_SOC) || \ - defined(CONFIG_ARCH_TEGRA_194_SOC) + defined(CONFIG_ARCH_TEGRA_194_SOC) || \ + defined(CONFIG_ARCH_TEGRA_234_SOC) + static u32 tegra30_fuse_read_early(struct tegra_fuse *fuse, unsigned int offset) { if (WARN_ON(!fuse->base))