[U-Boot] [PATCH v3 3/7] uclass: Add dev_get_uclass_index() to get the uclass/index of a device

2018-06-22 Thread Jean-Jacques Hiblot
This function is the reciprocal of uclass_find_device(). It will be used to print the index information in dm tree dump. Signed-off-by: Jean-Jacques Hiblot --- Changes in v3: - update commit log - fixed problem with the function name Changes in v2: None drivers/core/uclass.c| 21

Re: [U-Boot] [PATCH v3 3/7] uclass: Add dev_get_uclass_index() to get the uclass/index of a device

2018-06-29 Thread Simon Glass
Hi Jean-Jacques, On 22 June 2018 at 05:25, Jean-Jacques Hiblot wrote: > > This function is the reciprocal of uclass_find_device(). > It will be used to print the index information in dm tree dump. > > Signed-off-by: Jean-Jacques Hiblot > > --- > > Changes in v3: > - update commit log > - fixed p

Re: [U-Boot] [PATCH v3 3/7] uclass: Add dev_get_uclass_index() to get the uclass/index of a device

2018-07-04 Thread Jean-Jacques Hiblot
On 30/06/2018 06:19, Simon Glass wrote: Hi Jean-Jacques, On 22 June 2018 at 05:25, Jean-Jacques Hiblot wrote: This function is the reciprocal of uclass_find_device(). It will be used to print the index information in dm tree dump. Signed-off-by: Jean-Jacques Hiblot --- Changes in v3: - u