On 08/23/2012 09:18 AM, Sebastian Andrzej Siewior wrote:
> On 08/22/2012 09:49 PM, Alan Stern wrote:
>>> diff --git a/drivers/usb/host/Kconfig b/drivers/usb/host/Kconfig
>>> index c3f619b..cac3ee2 100644
>>> --- a/drivers/usb/host/Kconfig
>>> +++ b/drivers/usb/host/Kconfig
>>> @@ -292,7 +292,6 @@ config USB_OHCI_HCD
>>>       depends on USB&&  USB_ARCH_HAS_OHCI
>>>       select ISP1301_OMAP if MACH_OMAP_H2 || MACH_OMAP_H3
>>>       select USB_OTG_UTILS if ARCH_OMAP
>>> -    select USB_ISP1301 if ARCH_LPC32XX || ARCH_PNX4008
>>
>> You want to avoid selecting USB_ISP1301, right?
> 
> Yes. "depends on USB_ISP1301 if ARCH_LPC32XX" does not work.

How about:

        depends on USB_ISP1301 || !(ARCH_LPC32XX || ARCH_PNX4008)

or

        depends on USB_ISP1301 || !ARCH_LPC32XX

resp.? (Emulates "depends on USB_ISP1301 if ARCH_LPC32XX".)

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

Reply via email to