Re: [U-Boot] [PATCH] usb: dwc3: Fix default dr_mode setting

2019-06-28 Thread Marek Vasut
On 6/28/19 10:00 AM, Jean-Jacques Hiblot wrote: > > On 27/06/2019 18:30, Marek Vasut wrote: >> On 6/27/19 6:17 PM, Jean-Jacques Hiblot wrote: >>> On 27/06/2019 18:12, Marek Vasut wrote: On 6/27/19 5:53 PM, Jean-Jacques Hiblot wrote: > The IS_ENABLED() macro requires the complete CONFIG op

Re: [U-Boot] [PATCH] usb: dwc3: Fix default dr_mode setting

2019-06-28 Thread Jean-Jacques Hiblot
On 27/06/2019 18:30, Marek Vasut wrote: On 6/27/19 6:17 PM, Jean-Jacques Hiblot wrote: On 27/06/2019 18:12, Marek Vasut wrote: On 6/27/19 5:53 PM, Jean-Jacques Hiblot wrote: The IS_ENABLED() macro requires the complete CONFIG option including the 'CONFIG_' prefix. Use CONFIG_IS_ENABLED to ma

Re: [U-Boot] [PATCH] usb: dwc3: Fix default dr_mode setting

2019-06-27 Thread Marek Vasut
On 6/27/19 6:17 PM, Jean-Jacques Hiblot wrote: > > On 27/06/2019 18:12, Marek Vasut wrote: >> On 6/27/19 5:53 PM, Jean-Jacques Hiblot wrote: >>> The IS_ENABLED() macro requires the complete CONFIG option including the >>> 'CONFIG_' prefix. >> Use CONFIG_IS_ENABLED to make it work with SPL ? > > T

Re: [U-Boot] [PATCH] usb: dwc3: Fix default dr_mode setting

2019-06-27 Thread Jean-Jacques Hiblot
On 27/06/2019 18:12, Marek Vasut wrote: On 6/27/19 5:53 PM, Jean-Jacques Hiblot wrote: The IS_ENABLED() macro requires the complete CONFIG option including the 'CONFIG_' prefix. Use CONFIG_IS_ENABLED to make it work with SPL ? There is no SPL variant of this variable. JJ Signed-off-by:

Re: [U-Boot] [PATCH] usb: dwc3: Fix default dr_mode setting

2019-06-27 Thread Marek Vasut
On 6/27/19 5:53 PM, Jean-Jacques Hiblot wrote: > The IS_ENABLED() macro requires the complete CONFIG option including the > 'CONFIG_' prefix. Use CONFIG_IS_ENABLED to make it work with SPL ? > Signed-off-by: Jean-Jacques Hiblot > --- > To be applied on top of usb/next > > drivers/usb/dwc3/core

[U-Boot] [PATCH] usb: dwc3: Fix default dr_mode setting

2019-06-27 Thread Jean-Jacques Hiblot
The IS_ENABLED() macro requires the complete CONFIG option including the 'CONFIG_' prefix. Signed-off-by: Jean-Jacques Hiblot --- To be applied on top of usb/next drivers/usb/dwc3/core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/usb/dwc3/core.c b/drivers/usb/dw