diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2018-09-07 20:31:21 +0900 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2018-09-18 13:23:33 -0600 |
commit | 138c8a75620702ff0a7bb08147d5b98c0ddb5d1b (patch) | |
tree | c92549255a592a79bc6c2c77f5978d6372d4f938 /test | |
parent | 383d2568a76a0eeb29ef4df13cc4d7a06f626101 (diff) | |
download | u-boot-138c8a75620702ff0a7bb08147d5b98c0ddb5d1b.zip u-boot-138c8a75620702ff0a7bb08147d5b98c0ddb5d1b.tar.gz u-boot-138c8a75620702ff0a7bb08147d5b98c0ddb5d1b.tar.bz2 |
dm: fix alignment of help message of "dm" command
Currently, "help dm" shows as follows:
=> help dm
dm - Driver model low level access
Usage:
dm tree Dump driver model tree ('*' = activated)
dm uclass Dump list of instances for each uclass
dm devres Dump list of device resources for each device
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Tested-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/dm/cmd_dm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/dm/cmd_dm.c b/test/dm/cmd_dm.c index 624fc82..7b271db 100644 --- a/test/dm/cmd_dm.c +++ b/test/dm/cmd_dm.c @@ -82,7 +82,7 @@ static int do_dm(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) U_BOOT_CMD( dm, 3, 1, do_dm, "Driver model low level access", - "tree Dump driver model tree ('*' = activated)\n" + "tree Dump driver model tree ('*' = activated)\n" "dm uclass Dump list of instances for each uclass\n" "dm devres Dump list of device resources for each device" ); |