diff mbox series

[U-Boot] mmc: Remove hwpartition help text when command is disabled

Message ID 20180611162009.18985-1-alex.kiernan@gmail.com
State Accepted
Commit 845936792bc3c602470e2d759232fb1537cbc5e7
Delegated to: Tom Rini
Headers show
Series [U-Boot] mmc: Remove hwpartition help text when command is disabled | expand

Commit Message

Alex Kiernan June 11, 2018, 4:20 p.m. UTC
When the `mmc hwpartition` command is disabled, remove the associated help
text.

Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com>
---

 cmd/mmc.c | 2 ++
 1 file changed, 2 insertions(+)

Comments

Tom Rini June 19, 2018, 6:42 p.m. UTC | #1
On Mon, Jun 11, 2018 at 04:20:09PM +0000, Alex Kiernan wrote:

> When the `mmc hwpartition` command is disabled, remove the associated help
> text.
> 
> Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com>

Applied to u-boot/master, thanks!
diff mbox series

Patch

diff --git a/cmd/mmc.c b/cmd/mmc.c
index c2ee2d9c0a..3920a1836a 100644
--- a/cmd/mmc.c
+++ b/cmd/mmc.c
@@ -935,6 +935,7 @@  U_BOOT_CMD(
 	"mmc part - lists available partition on current mmc device\n"
 	"mmc dev [dev] [part] - show or set current mmc device [partition]\n"
 	"mmc list - lists available devices\n"
+#if CONFIG_IS_ENABLED(MMC_HW_PARTITIONING)
 	"mmc hwpartition [args...] - does hardware partitioning\n"
 	"  arguments (sizes in 512-byte blocks):\n"
 	"    [user [enh start cnt] [wrrel {on|off}]] - sets user data area attributes\n"
@@ -942,6 +943,7 @@  U_BOOT_CMD(
 	"    [check|set|complete] - mode, complete set partitioning completed\n"
 	"  WARNING: Partitioning is a write-once setting once it is set to complete.\n"
 	"  Power cycling is required to initialize partitions after set to complete.\n"
+#endif
 #ifdef CONFIG_SUPPORT_EMMC_BOOT
 	"mmc bootbus dev boot_bus_width reset_boot_bus_width boot_mode\n"
 	" - Set the BOOT_BUS_WIDTH field of the specified device\n"