Re: [PATCH 05/10] core: extend struct driver_info to point to device

2020-06-08 Thread Walter Lozano
On 4/6/20 12:59, Simon Glass wrote: Hi Walter, On Fri, 29 May 2020 at 12:15, Walter Lozano wrote: Currently when creating an U_BOOT_DEVICE entry a struct driver_info is declared, which contains the data needed to instantiate the device. However, the actual device is created at runtime and

Re: [PATCH 05/10] core: extend struct driver_info to point to device

2020-06-04 Thread Simon Glass
Hi Walter, On Fri, 29 May 2020 at 12:15, Walter Lozano wrote: > > Currently when creating an U_BOOT_DEVICE entry a struct driver_info > is declared, which contains the data needed to instantiate the device. > However, the actual device is created at runtime and there is no proper > way to get

Re: [PATCH 05/10] core: extend struct driver_info to point to device

2020-05-29 Thread Simon Glass
Hi Walter, On Fri, 29 May 2020 at 13:21, Walter Lozano wrote: > > Hi Simon, > > On 29/5/20 16:00, Simon Glass wrote: > > Hi Walter, > > > > On Fri, 29 May 2020 at 12:56, Walter Lozano > > wrote: > >> > >> On 29/5/20 15:15, Walter Lozano wrote: > >>> Currently when creating an U_BOOT_DEVICE

Re: [PATCH 05/10] core: extend struct driver_info to point to device

2020-05-29 Thread Walter Lozano
Hi Simon, On 29/5/20 16:00, Simon Glass wrote: Hi Walter, On Fri, 29 May 2020 at 12:56, Walter Lozano wrote: On 29/5/20 15:15, Walter Lozano wrote: Currently when creating an U_BOOT_DEVICE entry a struct driver_info is declared, which contains the data needed to instantiate the device.

Re: [PATCH 05/10] core: extend struct driver_info to point to device

2020-05-29 Thread Simon Glass
Hi Walter, On Fri, 29 May 2020 at 12:56, Walter Lozano wrote: > > > On 29/5/20 15:15, Walter Lozano wrote: > > Currently when creating an U_BOOT_DEVICE entry a struct driver_info > > is declared, which contains the data needed to instantiate the device. > > However, the actual device is created

Re: [PATCH 05/10] core: extend struct driver_info to point to device

2020-05-29 Thread Walter Lozano
On 29/5/20 15:15, Walter Lozano wrote: Currently when creating an U_BOOT_DEVICE entry a struct driver_info is declared, which contains the data needed to instantiate the device. However, the actual device is created at runtime and there is no proper way to get the device based on its struct

[PATCH 05/10] core: extend struct driver_info to point to device

2020-05-29 Thread Walter Lozano
Currently when creating an U_BOOT_DEVICE entry a struct driver_info is declared, which contains the data needed to instantiate the device. However, the actual device is created at runtime and there is no proper way to get the device based on its struct driver_info. This patch extends struct