1
0
mirror of https://xff.cz/git/u-boot/ synced 2026-01-20 07:27:22 +01:00

buildman: Drop some unnecessary variables

Drop some variables at the end of the do_bulidman() function.

Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Simon Glass
2023-07-19 17:48:55 -06:00
parent 68f917c0b1
commit 985d7ae4de

View File

@@ -616,9 +616,5 @@ def do_buildman(options, args, toolchains=None, make_func=None, brds=None,
TEST_BUILDER = builder
# Work out which boards to build
board_selected = brds.get_selected_dict()
commits = series.commits if series else None
retval = run_builder(builder, commits, board_selected, options)
return retval
return run_builder(builder, series.commits if series else None,
brds.get_selected_dict(), options)