mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-16 01:24:27 +00:00
Merge "fix(spm): silence warning in sp_mk_generator" into integration
This commit is contained in:
commit
0ec25e386a
1 changed files with 1 additions and 1 deletions
|
@ -137,7 +137,7 @@ def get_load_address(sp_layout, sp, args :dict):
|
|||
with open(get_sp_manifest_full_path(sp_layout[sp], args), "r") as pm_f:
|
||||
load_address_lines = [l for l in pm_f if 'load-address' in l]
|
||||
|
||||
if len(load_address_lines) is not 1:
|
||||
if len(load_address_lines) != 1:
|
||||
return None
|
||||
|
||||
load_address_parsed = re.search("(0x[0-9a-f]+)", load_address_lines[0])
|
||||
|
|
Loading…
Add table
Reference in a new issue