Re: [U-Boot] [PATCH] usb: Introduce CONFIG_SPL_DM_USB

2018-11-16 Thread Marek Vasut
On 11/16/2018 01:46 PM, Sven Schwermer wrote: > Hi again, > >> Did you have a chance to run it through travis CI to see if it builds on >> all and every platform ? > > This was a really good tip. I discovered a bunch of problems and will > basically replace CONFIG_DM_USB in the entire

Re: [U-Boot] [PATCH] usb: Introduce CONFIG_SPL_DM_USB

2018-11-16 Thread Sven Schwermer
Hi again, > Did you have a chance to run it through travis CI to see if it builds on > all and every platform ? This was a really good tip. I discovered a bunch of problems and will basically replace CONFIG_DM_USB in the entire driver/usb directory. I’ll prepare split patches. Sven

Re: [U-Boot] [PATCH] usb: Introduce CONFIG_SPL_DM_USB

2018-11-15 Thread Marek Vasut
On 11/15/2018 04:09 PM, Sven Schwermer wrote: >> Sweet! Is this s/CONFIG_DM_USB/CONFIG_IS_ENABLED(DM_USB)/ or is there >> some other stuff in the patch too ? > > There is also a bunch of CONFIG_BLK replacements. > >> If the later is the case, it'd be >> nice to do the

Re: [U-Boot] [PATCH] usb: Introduce CONFIG_SPL_DM_USB

2018-11-15 Thread Sven Schwermer
> Sweet! Is this s/CONFIG_DM_USB/CONFIG_IS_ENABLED(DM_USB)/ or is there > some other stuff in the patch too ? There is also a bunch of CONFIG_BLK replacements. > If the later is the case, it'd be > nice to do the s/CONFIG_DM_USB/CONFIG_IS_ENABLED(DM_USB)/ in a separate > patch, to make the later

Re: [U-Boot] [PATCH] usb: Introduce CONFIG_SPL_DM_USB

2018-11-15 Thread Marek Vasut
On 11/15/2018 09:20 AM, Sven Schwermer wrote: > This allows building the SPL without driver model for USB. So far, > support has only been added to the iMX6/7 host driver. Other boards will > keep their existing behaviour. > > Signed-off-by: Sven Schwermer > --- Sweet! Is this

[U-Boot] [PATCH] usb: Introduce CONFIG_SPL_DM_USB

2018-11-15 Thread Sven Schwermer
This allows building the SPL without driver model for USB. So far, support has only been added to the iMX6/7 host driver. Other boards will keep their existing behaviour. Signed-off-by: Sven Schwermer --- This solves the dependency problem I described in [1]. [1]: