]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
cmd: Change the dependencies between CMD_BIND and USB_GADGET
authorMiquel Raynal <miquel.raynal@bootlin.com>
Tue, 10 Oct 2023 09:03:02 +0000 (11:03 +0200)
committerMattijs Korpershoek <mkorpershoek@baylibre.com>
Tue, 21 Nov 2023 14:48:38 +0000 (15:48 +0100)
Today CMD_BIND defaults to 'y' when USB_ETHER is enabled. In practice,
CMD_BIND should default to 'y' when any USB gadget is enabled not only
USB_ETHER. Let's invert the logic of the dependency and use the weak
'imply' keyword to enforce this.

Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
Reviewed-by: Mattijs Korpershoek <mkorpershoek@baylibre.com>
Tested-by: Mattijs Korpershoek <mkorpershoek@baylibre.com> # on vim3
Link: https://lore.kernel.org/r/20231010090304.49335-2-miquel.raynal@bootlin.com
Signed-off-by: Mattijs Korpershoek <mkorpershoek@baylibre.com>
cmd/Kconfig
drivers/usb/gadget/Kconfig

index 6f636155e5b6b34fdc033c9527dde18819205df8..859e305634b725f81b441089b6458b0f9d265ca3 100644 (file)
@@ -977,7 +977,6 @@ config CMD_BCB
 config CMD_BIND
        bool "bind/unbind - Bind or unbind a device to/from a driver"
        depends on DM
-       default y if USB_ETHER
        help
          Bind or unbind a device to/from a driver from the command line.
          This is useful in situations where a device may be handled by several
index 4eccc5e3370e12526654372866b1e3a00551ea81..c72a8047635c33d43e3f0478763be60ae7dfac31 100644 (file)
@@ -17,6 +17,7 @@ menuconfig USB_GADGET
        bool "USB Gadget Support"
        depends on DM
        select DM_USB
+       imply CMD_BIND
        help
           USB is a master/slave protocol, organized with one master
           host (such as a PC) controlling up to 127 peripheral devices.