diff options
author | Simon Glass | 2023-07-19 17:48:55 -0600 |
---|---|---|
committer | Simon Glass | 2023-07-24 09:34:11 -0600 |
commit | 985d7ae4de9dfd8eaee190218f8c8744be42668d (patch) | |
tree | 60d2d6273d6cb8920f590e431d7d319d765474f4 /tools/buildman | |
parent | 68f917c0b146d24a9eba6f4a72cf4ee3c1bb86ef (diff) |
buildman: Drop some unnecessary variables
Drop some variables at the end of the do_bulidman() function.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/buildman')
-rw-r--r-- | tools/buildman/control.py | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/tools/buildman/control.py b/tools/buildman/control.py index 9f775cb15df..f30b8beae82 100644 --- a/tools/buildman/control.py +++ b/tools/buildman/control.py @@ -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) |