Hi Greg, This is a reply to a very old patch submission: On Tue, Apr 18, 2017 at 02:36:39AM +0000, Ben Hutchings wrote: > > This reverts commit cb9c1cfc86926d0e86d19c8e34f6c23458cd3478 for > USB_LED_TRIG. This config symbol has bool type and enables extra code > in usb_common itself, not a separate driver. Enabling it should not > force usb_common to be built-in! > > Fixes: cb9c1cfc8692 ("usb: Kconfig: using select for USB_COMMON dependency") > Signed-off-by: Ben Hutchings <ben@xxxxxxxxxxxxxxx> > --- > drivers/usb/Kconfig | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) > > diff --git a/drivers/usb/Kconfig b/drivers/usb/Kconfig > index fbe493d44e81..8270abe6c677 100644 > --- a/drivers/usb/Kconfig > +++ b/drivers/usb/Kconfig > @@ -154,8 +154,7 @@ source "drivers/usb/gadget/Kconfig" > =20 > config USB_LED_TRIG > bool "USB LED Triggers" > - depends on LEDS_CLASS && LEDS_TRIGGERS > - select USB_COMMON > + depends on LEDS_CLASS && USB_COMMON && LEDS_TRIGGERS > help > This option adds LED triggers for USB host and/or gadget activity. Was going through the series of patches we had applied in Debian and noticed while this was submitted by Ben back in 2017, it looks it was never applied or considered. Would that be something you could pick up? I'm inlining the original patch from Ben. Regards, Salvatore From: Ben Hutchings <ben@xxxxxxxxxxxxxxx> Date: Wed, 11 Jan 2017 04:30:40 +0000 Subject: Partially revert "usb: Kconfig: using select for USB_COMMON dependency" This reverts commit cb9c1cfc86926d0e86d19c8e34f6c23458cd3478 for USB_LED_TRIG. This config symbol has bool type and enables extra code in usb_common itself, not a separate driver. Enabling it should not force usb_common to be built-in! Fixes: cb9c1cfc8692 ("usb: Kconfig: using select for USB_COMMON dependency") Signed-off-by: Ben Hutchings <ben@xxxxxxxxxxxxxxx> --- drivers/usb/common/Kconfig | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/usb/common/Kconfig b/drivers/usb/common/Kconfig index d611477aae41..196f4a397587 100644 --- a/drivers/usb/common/Kconfig +++ b/drivers/usb/common/Kconfig @@ -6,8 +6,7 @@ config USB_COMMON config USB_LED_TRIG bool "USB LED Triggers" - depends on LEDS_CLASS && LEDS_TRIGGERS - select USB_COMMON + depends on LEDS_CLASS && USB_COMMON && LEDS_TRIGGERS help This option adds LED triggers for USB host and/or gadget activity.