* soc/tegra: fuse: undefined option ARCH_TEGRA_210_SOC
@ 2015-05-14 11:50 Valentin Rothberg
[not found] ` <CAD3Xx4+6r1w+oKgjUAuLXzszy9-uRWvXyyfv3q_1YGC6shXHFQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
0 siblings, 1 reply; 3+ messages in thread
From: Valentin Rothberg @ 2015-05-14 11:50 UTC (permalink / raw)
To: treding-DDmLM1+adcrQT0dZR+AlfA
Cc: Valentin Rothberg, swarren-3lzwWm7+Weoh9ZMKESR00Q,
gnurou-Re5JQEeQqe8AvxtiuMwx3w,
linux-kernel-u79uwXL29TY76Z2rM5mHXA,
linux-tegra-u79uwXL29TY76Z2rM5mHXA, Paul Bolle, Andreas Ruprecht,
hengelein Stefan
Hi Thierry,
your commit e3cf5bf687df ("soc/tegra: fuse: Add Tegra210 support") is
in today's linux-next tree (i.e., next-20150514). The following lines
in the commit reference a Kconfig option that is not defined, so that
the driver and the affected #ifdef blocks cannot be compiled:
drivers/soc/tegra/fuse/Makefile:10:obj-$(CONFIG_ARCH_TEGRA_210_SOC)
+= speedo-tegra210.o
drivers/soc/tegra/fuse/fuse-tegra.c:104:#ifdef CONFIG_ARCH_TEGRA_210_SOC
drivers/soc/tegra/fuse/fuse-tegra30.c:49: defined(CONFIG_ARCH_TEGRA_210_SOC)
drivers/soc/tegra/fuse/fuse-tegra30.c:148:#if defined(CONFIG_ARCH_TEGRA_210_SOC)
drivers/soc/tegra/fuse/fuse.h:84:#ifdef CONFIG_ARCH_TEGRA_210_SOC
drivers/soc/tegra/fuse/fuse.h:104:#ifdef CONFIG_ARCH_TEGRA_210_SOC
Is there a patch queued somewhere to add this option?
I detected this issue with scripts/checkkconfigsymbols.py by diffing
yesterday's and today's linux-next tree. You can also use the script
to check specific commits for Kconfig related issues.
Kind regards,
Valentin
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: soc/tegra: fuse: undefined option ARCH_TEGRA_210_SOC
[not found] ` <CAD3Xx4+6r1w+oKgjUAuLXzszy9-uRWvXyyfv3q_1YGC6shXHFQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2015-05-15 8:57 ` Thierry Reding
[not found] ` <20150515085700.GE4984-AwZRO8vwLAwmlAP/+Wk3EA@public.gmane.org>
0 siblings, 1 reply; 3+ messages in thread
From: Thierry Reding @ 2015-05-15 8:57 UTC (permalink / raw)
To: Valentin Rothberg
Cc: swarren-3lzwWm7+Weoh9ZMKESR00Q, gnurou-Re5JQEeQqe8AvxtiuMwx3w,
linux-kernel-u79uwXL29TY76Z2rM5mHXA,
linux-tegra-u79uwXL29TY76Z2rM5mHXA, Paul Bolle, Andreas Ruprecht,
hengelein Stefan
[-- Attachment #1: Type: text/plain, Size: 1082 bytes --]
On Thu, May 14, 2015 at 01:50:08PM +0200, Valentin Rothberg wrote:
> Hi Thierry,
>
> your commit e3cf5bf687df ("soc/tegra: fuse: Add Tegra210 support") is
> in today's linux-next tree (i.e., next-20150514). The following lines
> in the commit reference a Kconfig option that is not defined, so that
> the driver and the affected #ifdef blocks cannot be compiled:
>
> drivers/soc/tegra/fuse/Makefile:10:obj-$(CONFIG_ARCH_TEGRA_210_SOC)
> += speedo-tegra210.o
> drivers/soc/tegra/fuse/fuse-tegra.c:104:#ifdef CONFIG_ARCH_TEGRA_210_SOC
> drivers/soc/tegra/fuse/fuse-tegra30.c:49: defined(CONFIG_ARCH_TEGRA_210_SOC)
> drivers/soc/tegra/fuse/fuse-tegra30.c:148:#if defined(CONFIG_ARCH_TEGRA_210_SOC)
> drivers/soc/tegra/fuse/fuse.h:84:#ifdef CONFIG_ARCH_TEGRA_210_SOC
> drivers/soc/tegra/fuse/fuse.h:104:#ifdef CONFIG_ARCH_TEGRA_210_SOC
>
> Is there a patch queued somewhere to add this option?
Yes, these patches are all in the process of being merged for v4.2, so
I'd expect this particular Kconfig option to show up sometime soon now.
Thanks,
Thierry
[-- Attachment #2: Type: application/pgp-signature, Size: 819 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: soc/tegra: fuse: undefined option ARCH_TEGRA_210_SOC
[not found] ` <20150515085700.GE4984-AwZRO8vwLAwmlAP/+Wk3EA@public.gmane.org>
@ 2015-08-21 13:24 ` Valentin Rothberg
0 siblings, 0 replies; 3+ messages in thread
From: Valentin Rothberg @ 2015-08-21 13:24 UTC (permalink / raw)
To: Thierry Reding
Cc: swarren-3lzwWm7+Weoh9ZMKESR00Q, gnurou-Re5JQEeQqe8AvxtiuMwx3w,
linux-kernel-u79uwXL29TY76Z2rM5mHXA,
linux-tegra-u79uwXL29TY76Z2rM5mHXA, Paul Bolle, Andreas Ruprecht,
hengelein Stefan
Hi Thierry,
this is just a kind reminder that the issue (see below) is still present.
On Fri, May 15, 2015 at 10:57 AM, Thierry Reding <treding-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org> wrote:
> On Thu, May 14, 2015 at 01:50:08PM +0200, Valentin Rothberg wrote:
>> Hi Thierry,
>>
>> your commit e3cf5bf687df ("soc/tegra: fuse: Add Tegra210 support") is
>> in today's linux-next tree (i.e., next-20150514). The following lines
>> in the commit reference a Kconfig option that is not defined, so that
>> the driver and the affected #ifdef blocks cannot be compiled:
>>
>> drivers/soc/tegra/fuse/Makefile:10:obj-$(CONFIG_ARCH_TEGRA_210_SOC)
>> += speedo-tegra210.o
>> drivers/soc/tegra/fuse/fuse-tegra.c:104:#ifdef CONFIG_ARCH_TEGRA_210_SOC
>> drivers/soc/tegra/fuse/fuse-tegra30.c:49: defined(CONFIG_ARCH_TEGRA_210_SOC)
>> drivers/soc/tegra/fuse/fuse-tegra30.c:148:#if defined(CONFIG_ARCH_TEGRA_210_SOC)
>> drivers/soc/tegra/fuse/fuse.h:84:#ifdef CONFIG_ARCH_TEGRA_210_SOC
>> drivers/soc/tegra/fuse/fuse.h:104:#ifdef CONFIG_ARCH_TEGRA_210_SOC
>>
>> Is there a patch queued somewhere to add this option?
>
> Yes, these patches are all in the process of being merged for v4.2, so
> I'd expect this particular Kconfig option to show up sometime soon now.
>
> Thanks,
> Thierry
Kind regards,
Valentin
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-08-21 13:24 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-05-14 11:50 soc/tegra: fuse: undefined option ARCH_TEGRA_210_SOC Valentin Rothberg
[not found] ` <CAD3Xx4+6r1w+oKgjUAuLXzszy9-uRWvXyyfv3q_1YGC6shXHFQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2015-05-15 8:57 ` Thierry Reding
[not found] ` <20150515085700.GE4984-AwZRO8vwLAwmlAP/+Wk3EA@public.gmane.org>
2015-08-21 13:24 ` Valentin Rothberg
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).