mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-11 07:24:46 +00:00
qconfig: Correct unhashable-type error with --scan-source
This gives an error with newer Python version, so fix it. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
2ac91756ad
commit
301c2ab729
1 changed files with 2 additions and 2 deletions
|
@ -1453,7 +1453,7 @@ def do_scan_source(path, do_update):
|
|||
print('\nCONFIG options used as Proper in Makefiles but without a non-xPL_ variant:')
|
||||
not_found = check_not_found(all_uses, MODE_PROPER)
|
||||
show_uses(not_found)
|
||||
proper_not_found |= {not_found.keys()}
|
||||
proper_not_found |= not_found.keys()
|
||||
|
||||
# Scan the source code
|
||||
all_uses, _ = scan_src_files(src_list)
|
||||
|
@ -1471,7 +1471,7 @@ def do_scan_source(path, do_update):
|
|||
print('\nCONFIG options used as Proper in source but without a non-xPL_ variant:')
|
||||
not_found = check_not_found(all_uses, MODE_PROPER)
|
||||
show_uses(not_found)
|
||||
proper_not_found |= {not_found.keys()}
|
||||
proper_not_found |= not_found.keys()
|
||||
|
||||
print('\nCONFIG options used as SPL but without an xPL_ variant:')
|
||||
for item in sorted(spl_not_found):
|
||||
|
|
Loading…
Add table
Reference in a new issue