linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* linux-next: build failure after merge of the usb.current tree
@ 2021-06-10 22:52 Stephen Rothwell
  2021-06-11  7:22 ` Greg KH
  0 siblings, 1 reply; 4+ messages in thread
From: Stephen Rothwell @ 2021-06-10 22:52 UTC (permalink / raw)
  To: Greg KH; +Cc: Joel Stanley, Linux Kernel Mailing List, Linux Next Mailing List

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

Hi all,

After merging the usb.current tree, today's linux-next build (arm
multi_v7_defconfig) failed like this:

arm-linux-gnueabi-ld: drivers/usb/gadget/udc/fsl_udc_core.o: in function `fsl_udc_remove':
fsl_udc_core.c:(.text+0xc88): undefined reference to `fsl_udc_clk_release'
arm-linux-gnueabi-ld: drivers/usb/gadget/udc/fsl_udc_core.o: in function `fsl_udc_probe':
fsl_udc_core.c:(.text+0x1c44): undefined reference to `fsl_udc_clk_init'
arm-linux-gnueabi-ld: fsl_udc_core.c:(.text+0x1dcc): undefined reference to `fsl_udc_clk_finalize'
arm-linux-gnueabi-ld: fsl_udc_core.c:(.text+0x1fe8): undefined reference to `fsl_udc_clk_release'

Caused by commit

  e0e8b6abe8c8 ("usb: gadget: fsl: Re-enable driver for ARM SoCs")

I have reverted that commit for today.

-- 
Cheers,
Stephen Rothwell

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

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

* Re: linux-next: build failure after merge of the usb.current tree
  2021-06-10 22:52 linux-next: build failure after merge of the usb.current tree Stephen Rothwell
@ 2021-06-11  7:22 ` Greg KH
  0 siblings, 0 replies; 4+ messages in thread
From: Greg KH @ 2021-06-11  7:22 UTC (permalink / raw)
  To: Stephen Rothwell
  Cc: Joel Stanley, Linux Kernel Mailing List, Linux Next Mailing List

On Fri, Jun 11, 2021 at 08:52:13AM +1000, Stephen Rothwell wrote:
> Hi all,
> 
> After merging the usb.current tree, today's linux-next build (arm
> multi_v7_defconfig) failed like this:
> 
> arm-linux-gnueabi-ld: drivers/usb/gadget/udc/fsl_udc_core.o: in function `fsl_udc_remove':
> fsl_udc_core.c:(.text+0xc88): undefined reference to `fsl_udc_clk_release'
> arm-linux-gnueabi-ld: drivers/usb/gadget/udc/fsl_udc_core.o: in function `fsl_udc_probe':
> fsl_udc_core.c:(.text+0x1c44): undefined reference to `fsl_udc_clk_init'
> arm-linux-gnueabi-ld: fsl_udc_core.c:(.text+0x1dcc): undefined reference to `fsl_udc_clk_finalize'
> arm-linux-gnueabi-ld: fsl_udc_core.c:(.text+0x1fe8): undefined reference to `fsl_udc_clk_release'
> 
> Caused by commit
> 
>   e0e8b6abe8c8 ("usb: gadget: fsl: Re-enable driver for ARM SoCs")
> 
> I have reverted that commit for today.

Thanks for the testing, I have now reverted it.

greg k-h

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

* Re: linux-next: build failure after merge of the usb.current tree
  2014-08-27  1:03 Stephen Rothwell
@ 2014-08-27 23:55 ` Greg KH
  0 siblings, 0 replies; 4+ messages in thread
From: Greg KH @ 2014-08-27 23:55 UTC (permalink / raw)
  To: Stephen Rothwell
  Cc: linux-next, linux-kernel, Roger Quadros, Michael Welling, Alan Stern

On Wed, Aug 27, 2014 at 11:03:22AM +1000, Stephen Rothwell wrote:
> Hi Greg,
> 
> After merging the usb.current tree, today's linux-next build (powerpc
> ppc64_defconfig) failed like this:
> 
> drivers/usb/core/hub.c: In function 'hub_probe':
> drivers/usb/core/hub.c:1735:21: error: 'struct dev_pm_info' has no member named 'autosuspend_delay'
>   if (hdev->dev.power.autosuspend_delay >= 0)
>                      ^
> 
> Caused by commit bdd405d2a528 ("usb: hub: Prevent hub autosuspend if
> usbcore.autosuspend is -1").  CONFIG_PM_RUNTIME is not set in this
> build.
> 
> I have reverted that commit for today.

Thanks, I'll work on fixing this later on today...

greg k-h

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

* linux-next: build failure after merge of the usb.current tree
@ 2014-08-27  1:03 Stephen Rothwell
  2014-08-27 23:55 ` Greg KH
  0 siblings, 1 reply; 4+ messages in thread
From: Stephen Rothwell @ 2014-08-27  1:03 UTC (permalink / raw)
  To: Greg KH
  Cc: linux-next, linux-kernel, Roger Quadros, Michael Welling, Alan Stern

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

Hi Greg,

After merging the usb.current tree, today's linux-next build (powerpc
ppc64_defconfig) failed like this:

drivers/usb/core/hub.c: In function 'hub_probe':
drivers/usb/core/hub.c:1735:21: error: 'struct dev_pm_info' has no member named 'autosuspend_delay'
  if (hdev->dev.power.autosuspend_delay >= 0)
                     ^

Caused by commit bdd405d2a528 ("usb: hub: Prevent hub autosuspend if
usbcore.autosuspend is -1").  CONFIG_PM_RUNTIME is not set in this
build.

I have reverted that commit for today.
-- 
Cheers,
Stephen Rothwell                    sfr@canb.auug.org.au

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

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

end of thread, other threads:[~2021-06-11  7:23 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-10 22:52 linux-next: build failure after merge of the usb.current tree Stephen Rothwell
2021-06-11  7:22 ` Greg KH
  -- strict thread matches above, loose matches on Subject: below --
2014-08-27  1:03 Stephen Rothwell
2014-08-27 23:55 ` Greg KH

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