linux-next.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* linux-next: build failure after merge of the tegra tree
@ 2020-05-10 22:51 Stephen Rothwell
  2020-05-12 21:12 ` Thierry Reding
  0 siblings, 1 reply; 6+ messages in thread
From: Stephen Rothwell @ 2020-05-10 22:51 UTC (permalink / raw)
  To: Colin Cross, Olof Johansson, Thierry Reding
  Cc: Linux Next Mailing List, Linux Kernel Mailing List, Sowjanya Komatineni

[-- Attachment #1: Type: text/plain, Size: 1120 bytes --]

Hi all,

After merging the tegra tree, today's linux-next build (x86_64
allmodconfig) failed like this:

ERROR: modpost: "host1x_driver_register_full" [drivers/staging/media/tegra-video/tegra-video.ko] undefined!
ERROR: modpost: "host1x_device_exit" [drivers/staging/media/tegra-video/tegra-video.ko] undefined!
ERROR: modpost: "host1x_client_unregister" [drivers/staging/media/tegra-video/tegra-video.ko] undefined!
ERROR: modpost: "host1x_driver_unregister" [drivers/staging/media/tegra-video/tegra-video.ko] undefined!
ERROR: modpost: "host1x_device_init" [drivers/staging/media/tegra-video/tegra-video.ko] undefined!
ERROR: modpost: "host1x_syncpt_free" [drivers/staging/media/tegra-video/tegra-video.ko] undefined!
ERROR: modpost: "host1x_syncpt_request" [drivers/staging/media/tegra-video/tegra-video.ko] undefined!
ERROR: modpost: "host1x_client_register" [drivers/staging/media/tegra-video/tegra-video.ko] undefined!

Caused by commit

  423d10a99b30 ("media: tegra: Add Tegra210 Video input driver")

I removed CONFIG_COMPILE_TEST for this driver for today.

-- 
Cheers,
Stephen Rothwell

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: linux-next: build failure after merge of the tegra tree
  2020-05-10 22:51 linux-next: build failure after merge of the tegra tree Stephen Rothwell
@ 2020-05-12 21:12 ` Thierry Reding
  0 siblings, 0 replies; 6+ messages in thread
From: Thierry Reding @ 2020-05-12 21:12 UTC (permalink / raw)
  To: Stephen Rothwell
  Cc: Colin Cross, Olof Johansson, Thierry Reding,
	Linux Next Mailing List, Linux Kernel Mailing List,
	Sowjanya Komatineni

[-- Attachment #1: Type: text/plain, Size: 1369 bytes --]

On Mon, May 11, 2020 at 08:51:14AM +1000, Stephen Rothwell wrote:
> Hi all,
> 
> After merging the tegra tree, today's linux-next build (x86_64
> allmodconfig) failed like this:
> 
> ERROR: modpost: "host1x_driver_register_full" [drivers/staging/media/tegra-video/tegra-video.ko] undefined!
> ERROR: modpost: "host1x_device_exit" [drivers/staging/media/tegra-video/tegra-video.ko] undefined!
> ERROR: modpost: "host1x_client_unregister" [drivers/staging/media/tegra-video/tegra-video.ko] undefined!
> ERROR: modpost: "host1x_driver_unregister" [drivers/staging/media/tegra-video/tegra-video.ko] undefined!
> ERROR: modpost: "host1x_device_init" [drivers/staging/media/tegra-video/tegra-video.ko] undefined!
> ERROR: modpost: "host1x_syncpt_free" [drivers/staging/media/tegra-video/tegra-video.ko] undefined!
> ERROR: modpost: "host1x_syncpt_request" [drivers/staging/media/tegra-video/tegra-video.ko] undefined!
> ERROR: modpost: "host1x_client_register" [drivers/staging/media/tegra-video/tegra-video.ko] undefined!
> 
> Caused by commit
> 
>   423d10a99b30 ("media: tegra: Add Tegra210 Video input driver")
> 
> I removed CONFIG_COMPILE_TEST for this driver for today.

Thanks, I've now added a patch that drops the alternative dependency on
COMPILE_TEST because TEGRA_HOST1X doesn't have stubs for any of these
exported functions.

Thierry

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: linux-next: build failure after merge of the tegra tree
  2021-10-06 18:00   ` Thierry Reding
@ 2021-10-06 18:27     ` Dmitry Osipenko
  0 siblings, 0 replies; 6+ messages in thread
From: Dmitry Osipenko @ 2021-10-06 18:27 UTC (permalink / raw)
  To: Thierry Reding
  Cc: Stephen Rothwell, Colin Cross, Olof Johansson, Thierry Reding,
	Linux Kernel Mailing List, Linux Next Mailing List

06.10.2021 21:00, Thierry Reding пишет:
...
>>> Presumably caused by commit
>>>
>>>   bbe30ae68d14 ("cpuidle: tegra: Enable compile testing")
>>>
>>> I have used the tegra tree from next-20211001 for today.
>>>
>>
>> Stephen, thank you. Now I recall what was the actual reason for my
>> version of the patch [1]. Thierry, please use my original patch, thanks.
>>
>> [1]
>> https://patchwork.ozlabs.org/project/linux-tegra/patch/20210912202907.28471-5-digetx@gmail.com/
> 
> Sorry, I forgot to reply to this yesterday. I found a simpler fix for
> this and I pushed that yesterday. Today's linux-next didn't have the
> build failure anymore, so I guess it worked.

It works, thanks.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: linux-next: build failure after merge of the tegra tree
  2021-10-04 23:54 ` Dmitry Osipenko
@ 2021-10-06 18:00   ` Thierry Reding
  2021-10-06 18:27     ` Dmitry Osipenko
  0 siblings, 1 reply; 6+ messages in thread
From: Thierry Reding @ 2021-10-06 18:00 UTC (permalink / raw)
  To: Dmitry Osipenko
  Cc: Stephen Rothwell, Colin Cross, Olof Johansson, Thierry Reding,
	Linux Kernel Mailing List, Linux Next Mailing List

[-- Attachment #1: Type: text/plain, Size: 6020 bytes --]

On Tue, Oct 05, 2021 at 02:54:43AM +0300, Dmitry Osipenko wrote:
> 05.10.2021 02:39, Stephen Rothwell пишет:
> > Hi all,
> > 
> > After merging the tegra tree, today's linux-next build (x86_64
> > allmodconfig) failed like this:
> > 
> > In file included from arch/x86/include/asm/bug.h:84,
> >                  from include/linux/bug.h:5,
> >                  from arch/x86/include/asm/paravirt.h:15,
> >                  from arch/x86/include/asm/irqflags.h:63,
> >                  from include/linux/irqflags.h:16,
> >                  from include/linux/rcupdate.h:26,
> >                  from include/linux/rculist.h:11,
> >                  from include/linux/pid.h:5,
> >                  from include/linux/sched.h:14,
> >                  from include/linux/ratelimit.h:6,
> >                  from include/linux/dev_printk.h:16,
> >                  from include/linux/device.h:15,
> >                  from include/linux/of_reserved_mem.h:5,
> >                  from drivers/memory/tegra/tegra210-emc-table.c:6:
> > include/linux/clk/tegra.h: In function 'tegra_cpu_rail_off_ready':
> > include/linux/clk/tegra.h:112:15: error: 'tegra_cpu_car_ops' undeclared (first use in this function)
> >   112 |  if (WARN_ON(!tegra_cpu_car_ops->rail_off_ready))
> >       |               ^~~~~~~~~~~~~~~~~
> > include/asm-generic/bug.h:121:25: note: in definition of macro 'WARN_ON'
> >   121 |  int __ret_warn_on = !!(condition);    \
> >       |                         ^~~~~~~~~
> > include/linux/clk/tegra.h:112:15: note: each undeclared identifier is reported only once for each function it appears in
> >   112 |  if (WARN_ON(!tegra_cpu_car_ops->rail_off_ready))
> >       |               ^~~~~~~~~~~~~~~~~
> > include/asm-generic/bug.h:121:25: note: in definition of macro 'WARN_ON'
> >   121 |  int __ret_warn_on = !!(condition);    \
> >       |                         ^~~~~~~~~
> > include/linux/clk/tegra.h: In function 'tegra_cpu_clock_suspend':
> > include/linux/clk/tegra.h:120:15: error: 'tegra_cpu_car_ops' undeclared (first use in this function)
> >   120 |  if (WARN_ON(!tegra_cpu_car_ops->suspend))
> >       |               ^~~~~~~~~~~~~~~~~
> > include/asm-generic/bug.h:121:25: note: in definition of macro 'WARN_ON'
> >   121 |  int __ret_warn_on = !!(condition);    \
> >       |                         ^~~~~~~~~
> > include/linux/clk/tegra.h: In function 'tegra_cpu_clock_resume':
> > include/linux/clk/tegra.h:128:15: error: 'tegra_cpu_car_ops' undeclared (first use in this function)
> >   128 |  if (WARN_ON(!tegra_cpu_car_ops->resume))
> >       |               ^~~~~~~~~~~~~~~~~
> > include/asm-generic/bug.h:121:25: note: in definition of macro 'WARN_ON'
> >   121 |  int __ret_warn_on = !!(condition);    \
> >       |                         ^~~~~~~~~
> > In file included from arch/x86/include/asm/bug.h:84,
> >                  from include/linux/bug.h:5,
> >                  from include/linux/cpumask.h:14,
> >                  from arch/x86/include/asm/cpumask.h:5,
> >                  from arch/x86/include/asm/msr.h:11,
> >                  from arch/x86/include/asm/processor.h:22,
> >                  from arch/x86/include/asm/timex.h:5,
> >                  from include/linux/timex.h:65,
> >                  from include/linux/time32.h:13,
> >                  from include/linux/time.h:60,
> >                  from include/linux/stat.h:19,
> >                  from include/linux/module.h:13,
> >                  from drivers/media/cec/platform/tegra/tegra_cec.c:14:
> > include/linux/clk/tegra.h: In function 'tegra_cpu_rail_off_ready':
> > include/linux/clk/tegra.h:112:15: error: 'tegra_cpu_car_ops' undeclared (first use in this function)
> >   112 |  if (WARN_ON(!tegra_cpu_car_ops->rail_off_ready))
> >       |               ^~~~~~~~~~~~~~~~~
> > include/asm-generic/bug.h:121:25: note: in definition of macro 'WARN_ON'
> >   121 |  int __ret_warn_on = !!(condition);    \
> >       |                         ^~~~~~~~~
> > include/linux/clk/tegra.h:112:15: note: each undeclared identifier is reported only once for each function it appears in
> >   112 |  if (WARN_ON(!tegra_cpu_car_ops->rail_off_ready))
> >       |               ^~~~~~~~~~~~~~~~~
> > include/asm-generic/bug.h:121:25: note: in definition of macro 'WARN_ON'
> >   121 |  int __ret_warn_on = !!(condition);    \
> >       |                         ^~~~~~~~~
> > include/linux/clk/tegra.h: In function 'tegra_cpu_clock_suspend':
> > include/linux/clk/tegra.h:120:15: error: 'tegra_cpu_car_ops' undeclared (first use in this function)
> >   120 |  if (WARN_ON(!tegra_cpu_car_ops->suspend))
> >       |               ^~~~~~~~~~~~~~~~~
> > include/asm-generic/bug.h:121:25: note: in definition of macro 'WARN_ON'
> >   121 |  int __ret_warn_on = !!(condition);    \
> >       |                         ^~~~~~~~~
> > include/linux/clk/tegra.h: In function 'tegra_cpu_clock_resume':
> > include/linux/clk/tegra.h:128:15: error: 'tegra_cpu_car_ops' undeclared (first use in this function)
> >   128 |  if (WARN_ON(!tegra_cpu_car_ops->resume))
> >       |               ^~~~~~~~~~~~~~~~~
> > include/asm-generic/bug.h:121:25: note: in definition of macro 'WARN_ON'
> >   121 |  int __ret_warn_on = !!(condition);    \
> >       |                         ^~~~~~~~~
> > 
> > Presumably caused by commit
> > 
> >   bbe30ae68d14 ("cpuidle: tegra: Enable compile testing")
> > 
> > I have used the tegra tree from next-20211001 for today.
> > 
> 
> Stephen, thank you. Now I recall what was the actual reason for my
> version of the patch [1]. Thierry, please use my original patch, thanks.
> 
> [1]
> https://patchwork.ozlabs.org/project/linux-tegra/patch/20210912202907.28471-5-digetx@gmail.com/

Sorry, I forgot to reply to this yesterday. I found a simpler fix for
this and I pushed that yesterday. Today's linux-next didn't have the
build failure anymore, so I guess it worked.

Thierry

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: linux-next: build failure after merge of the tegra tree
  2021-10-04 23:39 Stephen Rothwell
@ 2021-10-04 23:54 ` Dmitry Osipenko
  2021-10-06 18:00   ` Thierry Reding
  0 siblings, 1 reply; 6+ messages in thread
From: Dmitry Osipenko @ 2021-10-04 23:54 UTC (permalink / raw)
  To: Stephen Rothwell, Colin Cross, Olof Johansson, Thierry Reding
  Cc: Linux Kernel Mailing List, Linux Next Mailing List

05.10.2021 02:39, Stephen Rothwell пишет:
> Hi all,
> 
> After merging the tegra tree, today's linux-next build (x86_64
> allmodconfig) failed like this:
> 
> In file included from arch/x86/include/asm/bug.h:84,
>                  from include/linux/bug.h:5,
>                  from arch/x86/include/asm/paravirt.h:15,
>                  from arch/x86/include/asm/irqflags.h:63,
>                  from include/linux/irqflags.h:16,
>                  from include/linux/rcupdate.h:26,
>                  from include/linux/rculist.h:11,
>                  from include/linux/pid.h:5,
>                  from include/linux/sched.h:14,
>                  from include/linux/ratelimit.h:6,
>                  from include/linux/dev_printk.h:16,
>                  from include/linux/device.h:15,
>                  from include/linux/of_reserved_mem.h:5,
>                  from drivers/memory/tegra/tegra210-emc-table.c:6:
> include/linux/clk/tegra.h: In function 'tegra_cpu_rail_off_ready':
> include/linux/clk/tegra.h:112:15: error: 'tegra_cpu_car_ops' undeclared (first use in this function)
>   112 |  if (WARN_ON(!tegra_cpu_car_ops->rail_off_ready))
>       |               ^~~~~~~~~~~~~~~~~
> include/asm-generic/bug.h:121:25: note: in definition of macro 'WARN_ON'
>   121 |  int __ret_warn_on = !!(condition);    \
>       |                         ^~~~~~~~~
> include/linux/clk/tegra.h:112:15: note: each undeclared identifier is reported only once for each function it appears in
>   112 |  if (WARN_ON(!tegra_cpu_car_ops->rail_off_ready))
>       |               ^~~~~~~~~~~~~~~~~
> include/asm-generic/bug.h:121:25: note: in definition of macro 'WARN_ON'
>   121 |  int __ret_warn_on = !!(condition);    \
>       |                         ^~~~~~~~~
> include/linux/clk/tegra.h: In function 'tegra_cpu_clock_suspend':
> include/linux/clk/tegra.h:120:15: error: 'tegra_cpu_car_ops' undeclared (first use in this function)
>   120 |  if (WARN_ON(!tegra_cpu_car_ops->suspend))
>       |               ^~~~~~~~~~~~~~~~~
> include/asm-generic/bug.h:121:25: note: in definition of macro 'WARN_ON'
>   121 |  int __ret_warn_on = !!(condition);    \
>       |                         ^~~~~~~~~
> include/linux/clk/tegra.h: In function 'tegra_cpu_clock_resume':
> include/linux/clk/tegra.h:128:15: error: 'tegra_cpu_car_ops' undeclared (first use in this function)
>   128 |  if (WARN_ON(!tegra_cpu_car_ops->resume))
>       |               ^~~~~~~~~~~~~~~~~
> include/asm-generic/bug.h:121:25: note: in definition of macro 'WARN_ON'
>   121 |  int __ret_warn_on = !!(condition);    \
>       |                         ^~~~~~~~~
> In file included from arch/x86/include/asm/bug.h:84,
>                  from include/linux/bug.h:5,
>                  from include/linux/cpumask.h:14,
>                  from arch/x86/include/asm/cpumask.h:5,
>                  from arch/x86/include/asm/msr.h:11,
>                  from arch/x86/include/asm/processor.h:22,
>                  from arch/x86/include/asm/timex.h:5,
>                  from include/linux/timex.h:65,
>                  from include/linux/time32.h:13,
>                  from include/linux/time.h:60,
>                  from include/linux/stat.h:19,
>                  from include/linux/module.h:13,
>                  from drivers/media/cec/platform/tegra/tegra_cec.c:14:
> include/linux/clk/tegra.h: In function 'tegra_cpu_rail_off_ready':
> include/linux/clk/tegra.h:112:15: error: 'tegra_cpu_car_ops' undeclared (first use in this function)
>   112 |  if (WARN_ON(!tegra_cpu_car_ops->rail_off_ready))
>       |               ^~~~~~~~~~~~~~~~~
> include/asm-generic/bug.h:121:25: note: in definition of macro 'WARN_ON'
>   121 |  int __ret_warn_on = !!(condition);    \
>       |                         ^~~~~~~~~
> include/linux/clk/tegra.h:112:15: note: each undeclared identifier is reported only once for each function it appears in
>   112 |  if (WARN_ON(!tegra_cpu_car_ops->rail_off_ready))
>       |               ^~~~~~~~~~~~~~~~~
> include/asm-generic/bug.h:121:25: note: in definition of macro 'WARN_ON'
>   121 |  int __ret_warn_on = !!(condition);    \
>       |                         ^~~~~~~~~
> include/linux/clk/tegra.h: In function 'tegra_cpu_clock_suspend':
> include/linux/clk/tegra.h:120:15: error: 'tegra_cpu_car_ops' undeclared (first use in this function)
>   120 |  if (WARN_ON(!tegra_cpu_car_ops->suspend))
>       |               ^~~~~~~~~~~~~~~~~
> include/asm-generic/bug.h:121:25: note: in definition of macro 'WARN_ON'
>   121 |  int __ret_warn_on = !!(condition);    \
>       |                         ^~~~~~~~~
> include/linux/clk/tegra.h: In function 'tegra_cpu_clock_resume':
> include/linux/clk/tegra.h:128:15: error: 'tegra_cpu_car_ops' undeclared (first use in this function)
>   128 |  if (WARN_ON(!tegra_cpu_car_ops->resume))
>       |               ^~~~~~~~~~~~~~~~~
> include/asm-generic/bug.h:121:25: note: in definition of macro 'WARN_ON'
>   121 |  int __ret_warn_on = !!(condition);    \
>       |                         ^~~~~~~~~
> 
> Presumably caused by commit
> 
>   bbe30ae68d14 ("cpuidle: tegra: Enable compile testing")
> 
> I have used the tegra tree from next-20211001 for today.
> 

Stephen, thank you. Now I recall what was the actual reason for my
version of the patch [1]. Thierry, please use my original patch, thanks.

[1]
https://patchwork.ozlabs.org/project/linux-tegra/patch/20210912202907.28471-5-digetx@gmail.com/

^ permalink raw reply	[flat|nested] 6+ messages in thread

* linux-next: build failure after merge of the tegra tree
@ 2021-10-04 23:39 Stephen Rothwell
  2021-10-04 23:54 ` Dmitry Osipenko
  0 siblings, 1 reply; 6+ messages in thread
From: Stephen Rothwell @ 2021-10-04 23:39 UTC (permalink / raw)
  To: Colin Cross, Olof Johansson, Thierry Reding
  Cc: Dmitry Osipenko, Linux Kernel Mailing List, Linux Next Mailing List

[-- Attachment #1: Type: text/plain, Size: 5104 bytes --]

Hi all,

After merging the tegra tree, today's linux-next build (x86_64
allmodconfig) failed like this:

In file included from arch/x86/include/asm/bug.h:84,
                 from include/linux/bug.h:5,
                 from arch/x86/include/asm/paravirt.h:15,
                 from arch/x86/include/asm/irqflags.h:63,
                 from include/linux/irqflags.h:16,
                 from include/linux/rcupdate.h:26,
                 from include/linux/rculist.h:11,
                 from include/linux/pid.h:5,
                 from include/linux/sched.h:14,
                 from include/linux/ratelimit.h:6,
                 from include/linux/dev_printk.h:16,
                 from include/linux/device.h:15,
                 from include/linux/of_reserved_mem.h:5,
                 from drivers/memory/tegra/tegra210-emc-table.c:6:
include/linux/clk/tegra.h: In function 'tegra_cpu_rail_off_ready':
include/linux/clk/tegra.h:112:15: error: 'tegra_cpu_car_ops' undeclared (first use in this function)
  112 |  if (WARN_ON(!tegra_cpu_car_ops->rail_off_ready))
      |               ^~~~~~~~~~~~~~~~~
include/asm-generic/bug.h:121:25: note: in definition of macro 'WARN_ON'
  121 |  int __ret_warn_on = !!(condition);    \
      |                         ^~~~~~~~~
include/linux/clk/tegra.h:112:15: note: each undeclared identifier is reported only once for each function it appears in
  112 |  if (WARN_ON(!tegra_cpu_car_ops->rail_off_ready))
      |               ^~~~~~~~~~~~~~~~~
include/asm-generic/bug.h:121:25: note: in definition of macro 'WARN_ON'
  121 |  int __ret_warn_on = !!(condition);    \
      |                         ^~~~~~~~~
include/linux/clk/tegra.h: In function 'tegra_cpu_clock_suspend':
include/linux/clk/tegra.h:120:15: error: 'tegra_cpu_car_ops' undeclared (first use in this function)
  120 |  if (WARN_ON(!tegra_cpu_car_ops->suspend))
      |               ^~~~~~~~~~~~~~~~~
include/asm-generic/bug.h:121:25: note: in definition of macro 'WARN_ON'
  121 |  int __ret_warn_on = !!(condition);    \
      |                         ^~~~~~~~~
include/linux/clk/tegra.h: In function 'tegra_cpu_clock_resume':
include/linux/clk/tegra.h:128:15: error: 'tegra_cpu_car_ops' undeclared (first use in this function)
  128 |  if (WARN_ON(!tegra_cpu_car_ops->resume))
      |               ^~~~~~~~~~~~~~~~~
include/asm-generic/bug.h:121:25: note: in definition of macro 'WARN_ON'
  121 |  int __ret_warn_on = !!(condition);    \
      |                         ^~~~~~~~~
In file included from arch/x86/include/asm/bug.h:84,
                 from include/linux/bug.h:5,
                 from include/linux/cpumask.h:14,
                 from arch/x86/include/asm/cpumask.h:5,
                 from arch/x86/include/asm/msr.h:11,
                 from arch/x86/include/asm/processor.h:22,
                 from arch/x86/include/asm/timex.h:5,
                 from include/linux/timex.h:65,
                 from include/linux/time32.h:13,
                 from include/linux/time.h:60,
                 from include/linux/stat.h:19,
                 from include/linux/module.h:13,
                 from drivers/media/cec/platform/tegra/tegra_cec.c:14:
include/linux/clk/tegra.h: In function 'tegra_cpu_rail_off_ready':
include/linux/clk/tegra.h:112:15: error: 'tegra_cpu_car_ops' undeclared (first use in this function)
  112 |  if (WARN_ON(!tegra_cpu_car_ops->rail_off_ready))
      |               ^~~~~~~~~~~~~~~~~
include/asm-generic/bug.h:121:25: note: in definition of macro 'WARN_ON'
  121 |  int __ret_warn_on = !!(condition);    \
      |                         ^~~~~~~~~
include/linux/clk/tegra.h:112:15: note: each undeclared identifier is reported only once for each function it appears in
  112 |  if (WARN_ON(!tegra_cpu_car_ops->rail_off_ready))
      |               ^~~~~~~~~~~~~~~~~
include/asm-generic/bug.h:121:25: note: in definition of macro 'WARN_ON'
  121 |  int __ret_warn_on = !!(condition);    \
      |                         ^~~~~~~~~
include/linux/clk/tegra.h: In function 'tegra_cpu_clock_suspend':
include/linux/clk/tegra.h:120:15: error: 'tegra_cpu_car_ops' undeclared (first use in this function)
  120 |  if (WARN_ON(!tegra_cpu_car_ops->suspend))
      |               ^~~~~~~~~~~~~~~~~
include/asm-generic/bug.h:121:25: note: in definition of macro 'WARN_ON'
  121 |  int __ret_warn_on = !!(condition);    \
      |                         ^~~~~~~~~
include/linux/clk/tegra.h: In function 'tegra_cpu_clock_resume':
include/linux/clk/tegra.h:128:15: error: 'tegra_cpu_car_ops' undeclared (first use in this function)
  128 |  if (WARN_ON(!tegra_cpu_car_ops->resume))
      |               ^~~~~~~~~~~~~~~~~
include/asm-generic/bug.h:121:25: note: in definition of macro 'WARN_ON'
  121 |  int __ret_warn_on = !!(condition);    \
      |                         ^~~~~~~~~

Presumably caused by commit

  bbe30ae68d14 ("cpuidle: tegra: Enable compile testing")

I have used the tegra tree from next-20211001 for today.

-- 
Cheers,
Stephen Rothwell

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2021-10-06 18:27 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-10 22:51 linux-next: build failure after merge of the tegra tree Stephen Rothwell
2020-05-12 21:12 ` Thierry Reding
2021-10-04 23:39 Stephen Rothwell
2021-10-04 23:54 ` Dmitry Osipenko
2021-10-06 18:00   ` Thierry Reding
2021-10-06 18:27     ` Dmitry Osipenko

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).