]> git.baikalelectronics.ru Git - uboot.git/commitdiff
cmd: return code when tlv_eeprom incorrectly called
authorHeinrich Schuchardt <heinrich.schuchardt@canonical.com>
Fri, 27 Jan 2023 21:49:10 +0000 (22:49 +0100)
committerStefan Roese <sr@denx.de>
Mon, 13 Feb 2023 09:14:50 +0000 (10:14 +0100)
A command called with incorrect parameters should set $? to 1 (false).
Instead of calling cmd_usage(cmdtp) and then returning 0 just return
CMD_RET_FAILURE.

Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Acked-by: Baruch Siach <baruch@tkos.co.il>
Reviewed-by: Stefan Roese <sr@denx.de>
cmd/tlv_eeprom.c

index bf8d453dc5b659c41dd6925a4113eca4faffe9b7..4591ff336bbaf0bd7f5e72b85f3715f660371337 100644 (file)
@@ -479,17 +479,14 @@ int do_tlv_eeprom(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
                        show_tlv_devices();
                        break;
                default:
-                       cmd_usage(cmdtp);
-                       break;
+                       return CMD_RET_USAGE;
                }
                return 0;
        }
 
        // The set command takes one or two args.
-       if (argc > 4) {
-               cmd_usage(cmdtp);
-               return 0;
-       }
+       if (argc > 4)
+               return CMD_RET_USAGE;
 
        // Set command. If the TLV exists in the EEPROM, delete it. Then if
        // data was supplied for this TLV add the TLV with the new contents at
@@ -512,7 +509,7 @@ int do_tlv_eeprom(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
                current_dev = devnum;
                has_been_read = 0;
        } else {
-               cmd_usage(cmdtp);
+               return CMD_RET_USAGE;
        }
 
        return 0;