summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuergen Beisert <jbe@pengutronix.de>2010-10-22 10:59:29 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2010-10-22 19:57:09 +0200
commitc3626f2a0d657ced28df1cb83173e8b209b64959 (patch)
tree1e8466bc426f8131f0015f56192bf0c56dbc31a5
parent544d753fc9a0445e034d4a271639129ae4498364 (diff)
downloadbarebox-c3626f2a0d657ced28df1cb83173e8b209b64959.tar.gz
barebox-c3626f2a0d657ced28df1cb83173e8b209b64959.tar.xz
Fix a simple typo to less confusing the user
Signed-off-by: Juergen Beisert <jbe@pengutronix.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
-rw-r--r--commands/gpio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/gpio.c b/commands/gpio.c
index 2ae4cc6c9e..6a949f285f 100644
--- a/commands/gpio.c
+++ b/commands/gpio.c
@@ -37,7 +37,7 @@ static int do_gpio_get_value(struct command *cmdtp, int argc, char *argv[])
}
static const __maybe_unused char cmd_gpio_get_value_help[] =
-"Usage: gpio_set_value <gpio>\n";
+"Usage: gpio_get_value <gpio>\n";
BAREBOX_CMD_START(gpio_get_value)
.cmd = do_gpio_get_value,