Signed-off-by: Antony Pavlov <antonynpavlov@xxxxxxxxx> --- commands/led.c | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/commands/led.c b/commands/led.c index 360ce7c..afb3fd3 100644 --- a/commands/led.c +++ b/commands/led.c @@ -45,7 +45,7 @@ static int do_led(struct command *cmdtp, int argc, char *argv[]) led->max_value); i++; } - return 0; + return COMMAND_SUCCESS; } if (argc != 3) @@ -54,7 +54,7 @@ static int do_led(struct command *cmdtp, int argc, char *argv[]) led = led_by_name_or_number(argv[1]); if (!led) { printf("no such LED: %s\n", argv[1]); - return 1; + return COMMAND_ERROR; } value = simple_strtoul(argv[optind + 1], NULL, 0); @@ -62,10 +62,10 @@ static int do_led(struct command *cmdtp, int argc, char *argv[]) ret = led_set(led, value); if (ret < 0) { perror("led"); - return 1; + return COMMAND_ERROR; } - return 0; + return COMMAND_SUCCESS; } /** -- 1.7.5.4 _______________________________________________ barebox mailing list barebox@xxxxxxxxxxxxxxxxxxx http://lists.infradead.org/mailman/listinfo/barebox