Hello.

On 26-12-2013 16:24, Ezequiel Garcia wrote:

This USB controller can work in as host-only, gadget-only or dual-role
modes. Rework the dependency on the USB and USB_GADGET configs in order
to allow building the driver when !USB or !USG_GADGET.

Signed-off-by: Ezequiel Garcia <ezequiel.gar...@free-electrons.com>
[...]

diff --git a/drivers/usb/musb/Kconfig b/drivers/usb/musb/Kconfig
index 57dfc0c..a1d805f 100644
--- a/drivers/usb/musb/Kconfig
+++ b/drivers/usb/musb/Kconfig
@@ -6,7 +6,7 @@
  # (M)HDRC = (Multipoint) Highspeed Dual-Role Controller
  config USB_MUSB_HDRC
        tristate 'Inventra Highspeed Dual Role Controller (TI, ADI, ...)'
-       depends on USB_GADGET
+       depends on (USB || USB_GADGET)

   Parens are not needed here. Be consistent with other entries MUSB please.

        help
          Say Y here if your system has a dual role high speed USB
          controller based on the Mentor Graphics silicon IP.  Then
@@ -35,21 +35,21 @@ choice

  config USB_MUSB_HOST
        bool "Host only mode"
-       depends on USB
+       depends on USB=y || USB=USB_MUSB_HDRC
        help
          Select this when you want to use MUSB in host mode only,
          thereby the gadget feature will be regressed.

  config USB_MUSB_GADGET
        bool "Gadget only mode"
-       depends on USB_GADGET
+       depends on USB_GADGET=y || USB_GADGET=USB_MUSB_HDRC
        help
          Select this when you want to use MUSB in gadget mode only,
          thereby the host feature will be regressed.

  config USB_MUSB_DUAL_ROLE
        bool "Dual Role mode"
-       depends on (USB && USB_GADGET)
+       depends on ((USB=y || USB=USB_MUSB_HDRC) && (USB_GADGET=y || 
USB_GADGET=USB_MUSB_HDRC))

   Outer parens are not needed either...

WBR, Sergei

--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to