[U-Boot] [PATCH] dm: fix alignment in DM dump when 2-digit index exists

Marek Vasut marek.vasut at gmail.com
Fri Sep 7 11:20:57 UTC 2018


On 09/07/2018 01:15 PM, Masahiro Yamada wrote:
> If there exist 10 or more nodes of the same type, the alignment
> of "dm tree" command is broken.

But what if there exist 100 or mode nodes of the same type ? :-)

> Signed-off-by: Masahiro Yamada <yamada.masahiro at socionext.com>
> ---
> 
>  drivers/core/dump.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/core/dump.c b/drivers/core/dump.c
> index d7cdb14..c86f889 100644
> --- a/drivers/core/dump.c
> +++ b/drivers/core/dump.c
> @@ -16,7 +16,7 @@ static void show_devices(struct udevice *dev, int depth, int last_flag)
>  	struct udevice *child;
>  
>  	/* print the first 11 characters to not break the tree-format. */
> -	printf(" %-10.10s  %d  [ %c ]   %-10.10s  ", dev->uclass->uc_drv->name,
> +	printf(" %-10.10s  %2d  [ %c ]   %-10.10s  ", dev->uclass->uc_drv->name,
>  	       dev_get_uclass_index(dev, NULL),
>  	       dev->flags & DM_FLAG_ACTIVATED ? '+' : ' ', dev->driver->name);
>  
> 


-- 
Best regards,
Marek Vasut


More information about the U-Boot mailing list