aboutsummaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorTom Rini2023-11-27 16:19:09 -0500
committerTom Rini2023-11-27 16:19:09 -0500
commitd6e052c6151e89d34af2f6337c5cded1b12dfdb8 (patch)
tree45a1233a7c2276127184f23d7fec929799e7eee1 /cmd
parent129d6a0d87b7f19b85dc0a007f7050ce973fd019 (diff)
parent3555c92583c2c778a7b252bc6951be49fc21d22c (diff)
Merge patch series "ufs: Add a PCI UFS controller support"
To quote the author: This adds a PCI UFS controller support and enables the support on QEMU RISC-V for testing. Requiring QEMU v8.2+.
Diffstat (limited to 'cmd')
-rw-r--r--cmd/Kconfig2
-rw-r--r--cmd/ufs.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig
index 4569c06c750..7418c20c425 100644
--- a/cmd/Kconfig
+++ b/cmd/Kconfig
@@ -1520,7 +1520,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 "ufs - Universal Flash Storage commands"
depends on UFS
help
"This provides commands to initialise and configure universal flash
diff --git a/cmd/ufs.c b/cmd/ufs.c
index 282b4146e92..536bd85b75d 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"
);