]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
qconfig: Move operation check into parse_args()
authorSimon Glass <sjg@chromium.org>
Wed, 17 Jul 2024 15:57:11 +0000 (16:57 +0100)
committerSimon Glass <sjg@chromium.org>
Fri, 26 Jul 2024 14:01:06 +0000 (08:01 -0600)
Put the check for an operation being provided into the parse_args()
function, to reduce the size of main().

Signed-off-by: Simon Glass <sjg@chromium.org>
tools/qconfig.py

index dd24e4b398bee154ffe5d296e47e3d2b86c9ded5..408807931ff8742be9f7c0e2b9d4caa9d59d0402 100755 (executable)
@@ -1552,7 +1552,13 @@ doc/develop/moveconfig.rst for documentation.'''
                       help='show any build errors as boards are built')
     parser.add_argument('configs', nargs='*')
 
-    return parser, parser.parse_args()
+    args = parser.parse_args()
+    if not any((args.force_sync, args.build_db, args.imply, args.find,
+                args.scan_source, args.test)):
+        parser.print_usage()
+        sys.exit(1)
+
+    return parser, args
 
 
 def imply(args):
@@ -1660,11 +1666,6 @@ def do_tests():
 def main():
     """Main program"""
     parser, args = parse_args()
-    if not any((args.force_sync, args.build_db, args.imply, args.find,
-                args.scan_source, args.test)):
-        parser.print_usage()
-        sys.exit(1)
-
     check_top_directory()
 
     # prefix the option name with CONFIG_ if missing