From b2d01681ab2d7dd1735fefaacf0cbcb7d4e4f32a Mon Sep 17 00:00:00 2001 From: Bin Meng Date: Wed, 11 Oct 2023 21:15:44 +0800 Subject: ufs: Correct the UFS terminlogy UFS stands for Universal Flash Storage, not Subsytem. Signed-off-by: Bin Meng Reviewed-by: Simon Glass Reviewed-by: Neha Malcom Francis --- cmd/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cmd') diff --git a/cmd/Kconfig b/cmd/Kconfig index 6470b138d2f..a59c67e3338 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -1536,7 +1536,7 @@ config CMD_TSI148 Turndra tsi148 device. See the command help for full details. config CMD_UFS - bool "Enable UFS - Universal Flash Subsystem commands" + bool "Enable UFS - Universal Flash Storage commands" depends on UFS help "This provides commands to initialise and configure universal flash -- cgit v1.2.3 From ff039a8704e9c1e3d9cae535726686df78ef749e Mon Sep 17 00:00:00 2001 From: Bin Meng Date: Wed, 11 Oct 2023 21:15:46 +0800 Subject: cmd: kconfig: Make ufs prompt look similar to other commands At present the 'ufs' command prompt does not look similar like other commands. Update it. Signed-off-by: Bin Meng Reviewed-by: Simon Glass Reviewed-by: Neha Malcom Francis --- cmd/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cmd') diff --git a/cmd/Kconfig b/cmd/Kconfig index a59c67e3338..0b4e76c262b 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -1536,7 +1536,7 @@ config CMD_TSI148 Turndra tsi148 device. See the command help for full details. config CMD_UFS - bool "Enable UFS - Universal Flash Storage commands" + bool "ufs - Universal Flash Storage commands" depends on UFS help "This provides commands to initialise and configure universal flash -- cgit v1.2.3 From ba537e9b27acf0c4e6f9c474fe708f3997129936 Mon Sep 17 00:00:00 2001 From: Bin Meng Date: Wed, 11 Oct 2023 21:15:47 +0800 Subject: cmd: ufs: Correct the help text Remove the additional space and use "sub-system" for consistency with other commands like "scsi" and "usb". Signed-off-by: Bin Meng Reviewed-by: Simon Glass Reviewed-by: Neha Malcom Francis --- cmd/ufs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cmd') diff --git a/cmd/ufs.c b/cmd/ufs.c index 143e946370f..2c8d88df187 100644 --- a/cmd/ufs.c +++ b/cmd/ufs.c @@ -32,6 +32,6 @@ static int do_ufs(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]) } U_BOOT_CMD(ufs, 3, 1, do_ufs, - "UFS sub system", + "UFS sub-system", "init [dev] - init UFS subsystem\n" ); -- cgit v1.2.3